Skip to content
Snippets Groups Projects
Commit a173399e authored by Robert Anderson's avatar Robert Anderson
Browse files

Use character codes for displaying special characters

parent 9a9a8baa
No related branches found
No related tags found
No related merge requests found
......@@ -63,7 +63,7 @@ function getAdminClientRealms($params) {
$item = array();
$item['ID'] = $row->id;
$item['Name'] = $row->name;
$item['Name'] = htmlspecialchars($row->name);
# Push this row onto array
array_push($resultArray,$item);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment