From 4bfaf9419f52973dca96e1334b80abb93036362f Mon Sep 17 00:00:00 2001 From: Junior Date: Fri, 18 Apr 2025 15:20:10 -0400 Subject: [PATCH] Return raw queue name now that we are properly handling json response --- ajax/ajax_getqueuelist.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ajax/ajax_getqueuelist.php b/ajax/ajax_getqueuelist.php index f96c822..bb3645a 100644 --- a/ajax/ajax_getqueuelist.php +++ b/ajax/ajax_getqueuelist.php @@ -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: