From 3718987f50a1b1164a49c9be191121e368403cdf Mon Sep 17 00:00:00 2001 From: Marcus Hill Date: Sun, 19 Mar 2023 15:53:10 +0000 Subject: [PATCH 1/2] tickets.php - Rename unused ticket_status_display to ticket_status_color --- tickets.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tickets.php b/tickets.php index f46ab0ed..fabc0cd7 100644 --- a/tickets.php +++ b/tickets.php @@ -1,4 +1,4 @@ - Date: Sun, 19 Mar 2023 16:00:55 +0000 Subject: [PATCH 2/2] Tidy spacing --- tickets.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tickets.php b/tickets.php index fabc0cd7..34e8ca1d 100644 --- a/tickets.php +++ b/tickets.php @@ -287,17 +287,17 @@ $user_active_assigned_tickets = intval($row['total_tickets_assigned']); $contact_mobile = formatPhoneNumber($row['contact_mobile']); if ($ticket_status == "Open") { $ticket_status_color = "primary"; - }elseif ($ticket_status == "Working") { + } elseif ($ticket_status == "Working") { $ticket_status_color = "success"; - }else{ + } else{ $ticket_status_color = "secondary"; } if ($ticket_priority == "High") { $ticket_priority_color = "danger"; - }elseif ($ticket_priority == "Medium") { + } elseif ($ticket_priority == "Medium") { $ticket_priority_color = "warning"; - }else{ + } else{ $ticket_priority_color = "info"; } $ticket_assigned_to = intval($row['ticket_assigned_to']);