From 72fbebd77ad57c8b6027824d6bc9e61762827810 Mon Sep 17 00:00:00 2001 From: johnnyq Date: Thu, 13 Jan 2022 16:13:33 -0500 Subject: [PATCH] Client Tickets display Contact Email below Contact name, removed email column reworked the display handler on the main tickets listing page as well --- tickets.php | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/tickets.php b/tickets.php index 9f33b802..adb00da3 100644 --- a/tickets.php +++ b/tickets.php @@ -179,6 +179,7 @@ Number Subject + Contact Client Priority Status @@ -248,11 +249,18 @@ $ticket_assigned_to_display = $row['user_name']; } + if(empty($contact_name)){ + $contact_display = "-"; + }else{ + $contact_display = "$contact_name
$contact_email"; + } + ?> +