Fix Mail Parser, inserting \r \n

This commit is contained in:
johnnyq
2023-04-11 11:23:19 -04:00
parent ca6e3c229e
commit d27c83ab66
2 changed files with 6 additions and 7 deletions

View File

@@ -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") {