From 20dbe285e8edf7d81cb6a0f48666a1956f102c30 Mon Sep 17 00:00:00 2001 From: johnnyq Date: Sat, 11 Mar 2023 21:48:30 -0500 Subject: [PATCH] Remove HTML Entity Decode from the HTML Purifier as this is not needed now 2nd attempt in ticket replies --- ticket.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ticket.php b/ticket.php index 90233213..7cefb9ca 100644 --- a/ticket.php +++ b/ticket.php @@ -320,7 +320,7 @@ if (isset($_GET['ticket_id'])) { while ($row = mysqli_fetch_array($sql_ticket_replies)) { $ticket_reply_id = intval($row['ticket_reply_id']); - $ticket_reply = $purifier->purify(html_entity_decode($row['ticket_reply'])); + $ticket_reply = $purifier->purify($row['ticket_reply']); //$ticket_reply = $row['ticket_reply']; $ticket_reply_type = htmlentities($row['ticket_reply_type']); $ticket_reply_created_at = htmlentities($row['ticket_reply_created_at']);