Return raw queue name now that we are properly handling json response

This commit is contained in:
Junior 2025-04-18 15:20:10 -04:00
parent ad46bc9bd9
commit 4bfaf9419f

View File

@ -8,7 +8,7 @@ $data = array();
foreach ( $queues as $queue ) {
$newdata = array();
$newdata['id'] = $queue->getID();
$newdata['name'] = $queue->getName(HTMLSAFE);
$newdata['name'] = $queue->getName();
$newdata['type'] = $queue->getType();
$newdata['active'] = $queue->getActive();
$data['queues'][] = $newdata;
@ -19,4 +19,4 @@ header('Content-Type: application/json');
echo json_encode($data);
exit();
?>
// vim: et ts=3 sw=3 ai: