From b784c4812069510a695e555c8ee7b2e7e2bfaa73 Mon Sep 17 00:00:00 2001 From: johnnyq Date: Wed, 12 Apr 2023 16:48:35 -0400 Subject: [PATCH] Opps Fix --- ticket.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ticket.php b/ticket.php index b2bdb40e..8aa1586c 100644 --- a/ticket.php +++ b/ticket.php @@ -44,8 +44,8 @@ if (isset($_GET['ticket_id'])) { $ticket_number = intval($row['ticket_number']); $ticket_category = htmlentities($row['ticket_category']); $ticket_subject = htmlentities($row['ticket_subject']); - //$ticket_details = $purifier->purify($row['ticket_details']); - $ticket_details = $row['ticket_details']; + $ticket_details = $purifier->purify($row['ticket_details']); + //$ticket_details = $row['ticket_details']; $ticket_priority = htmlentities($row['ticket_priority']); //Set Ticket Bage Color based of priority if ($ticket_priority == "High") {