Removed Task Order Input from Task edit modal as this is done by dragging and dropping now

This commit is contained in:
johnnyq
2025-02-11 17:29:53 -05:00
parent 228a457518
commit a2e16f918c
2 changed files with 0 additions and 11 deletions

View File

@@ -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']);