From a2e16f918cf7ae2a9699dd6a41804aa14e32196c Mon Sep 17 00:00:00 2001 From: johnnyq Date: Tue, 11 Feb 2025 17:29:53 -0500 Subject: [PATCH] Removed Task Order Input from Task edit modal as this is done by dragging and dropping now --- modals/task_edit_modal.php | 10 ---------- ticket.php | 1 - 2 files changed, 11 deletions(-) diff --git a/modals/task_edit_modal.php b/modals/task_edit_modal.php index 9a7fb22c..e5aeb251 100644 --- a/modals/task_edit_modal.php +++ b/modals/task_edit_modal.php @@ -24,16 +24,6 @@ -
- -
-
- -
- -
-
-
diff --git a/ticket.php b/ticket.php index 71f093da..9d131a02 100644 --- a/ticket.php +++ b/ticket.php @@ -923,7 +923,6 @@ if (isset($_GET['ticket_id'])) { while($row = mysqli_fetch_array($sql_tasks)){ $task_id = intval($row['task_id']); $task_name = nullable_htmlentities($row['task_name']); - $task_order = intval($row['task_order']); //$task_description = nullable_htmlentities($row['task_description']); // not in db yet $task_completion_estimate = intval($row['task_completion_estimate']); $task_completed_at = nullable_htmlentities($row['task_completed_at']);