From 4a2d76b0563acf308d27a38329596a298867442e Mon Sep 17 00:00:00 2001 From: johnnyq Date: Sat, 18 Mar 2023 12:29:23 -0400 Subject: [PATCH] Fix https://forum.itflow.org/d/111-umlauts-are-replaced-in-the-subjects - Removed array_map htmlentities which wasnt needed since we are passing AJAX data over which is already formated properly --- ajax.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ajax.php b/ajax.php index b59f7ed6..98796e8d 100644 --- a/ajax.php +++ b/ajax.php @@ -120,7 +120,7 @@ if (isset($_GET['merge_ticket_get_json_details'])) { } else { //Return ticket, client and contact details for the given ticket number $response = mysqli_fetch_array($sql); - $response = array_map('htmlentities', $response); + echo json_encode($response); } }