From 5c7f6416358ebd416354013cf0c775fdadb39f18 Mon Sep 17 00:00:00 2001 From: johnnyq Date: Mon, 17 Aug 2026 12:39:29 -0400 Subject: [PATCH] Fix Ticket Notification in Portal was calling a function that was removed causing it to 500 error out --- client/post.php | 1 - 1 file changed, 1 deletion(-) diff --git a/client/post.php b/client/post.php index d824709d6..8d45857f6 100644 --- a/client/post.php +++ b/client/post.php @@ -55,7 +55,6 @@ if (isset($_POST['add_ticket'])) { if ($config_ticket_new_ticket_notification_email) { $client_name = escapeSql($session_client_name); - $details = removeEmoji($details); $email_subject = "ITFlow - New Ticket - $client_name: $subject"; $email_body = "Hello,

This is a notification that a new ticket has been raised in ITFlow.
Client: $client_name
Priority: $priority
Link: https://$config_base_url/agent/ticket.php?ticket_id=$ticket_id&client_id=$session_client_id

$subject
$details";