diff --git a/admin_ticket_template_details.php b/admin_ticket_template_details.php index b928d46e..39e946cb 100644 --- a/admin_ticket_template_details.php +++ b/admin_ticket_template_details.php @@ -99,7 +99,6 @@ $sql_task_templates = mysqli_query($mysqli, "SELECT * FROM task_templates WHERE while($row = mysqli_fetch_array($sql_task_templates)){ $task_id = intval($row['task_template_id']); $task_name = nullable_htmlentities($row['task_template_name']); - $task_order = intval($row['task_template_order']); $task_completion_estimate = intval($row['task_template_completion_estimate']); $task_description = nullable_htmlentities($row['task_template_description']); ?> diff --git a/invoice.php b/invoice.php index ddbe0616..18913183 100644 --- a/invoice.php +++ b/invoice.php @@ -369,18 +369,6 @@ if (isset($_GET['invoice_id'])) { $tax_id = intval($row['item_tax_id']); $total_tax = $item_tax + $total_tax; $sub_total = $item_price * $item_quantity + $sub_total; - $item_order = intval($row['item_order']); - // Logic to check if top or bottom arrow should be hidden - if ($item_order == 1) { - $up_hidden = "hidden"; - } else { - $up_hidden = ""; - } - if ($item_order == mysqli_num_rows($sql_invoice_items)) { - $down_hidden = "hidden"; - } else { - $down_hidden = ""; - } ?> @@ -390,15 +378,6 @@ if (isset($_GET['invoice_id'])) { '; }?> - - -