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

This commit is contained in:
johnnyq
2023-03-18 12:29:23 -04:00
parent 99eaaa71c4
commit 4a2d76b056

View File

@@ -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);
}
}