mirror of
https://github.com/itflow-org/itflow
synced 2026-03-22 13:35:37 +00:00
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:
2
ajax.php
2
ajax.php
@@ -120,7 +120,7 @@ if (isset($_GET['merge_ticket_get_json_details'])) {
|
|||||||
} else {
|
} else {
|
||||||
//Return ticket, client and contact details for the given ticket number
|
//Return ticket, client and contact details for the given ticket number
|
||||||
$response = mysqli_fetch_array($sql);
|
$response = mysqli_fetch_array($sql);
|
||||||
$response = array_map('htmlentities', $response);
|
|
||||||
echo json_encode($response);
|
echo json_encode($response);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user