From 4d18f598b2bd7b4e8ec02332f0151aa0fff80353 Mon Sep 17 00:00:00 2001 From: FusionPBX Date: Fri, 6 May 2022 14:14:29 -0600 Subject: [PATCH] Use a css class for the sub category labels. --- app/basic_operator_panel/resources/content.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/basic_operator_panel/resources/content.php b/app/basic_operator_panel/resources/content.php index e7f1ebae77..ee9462828b 100644 --- a/app/basic_operator_panel/resources/content.php +++ b/app/basic_operator_panel/resources/content.php @@ -477,7 +477,7 @@ if (sizeof($grouped_extensions) > 0) { // Ensure alphabetical order ksort($grouped_extensions); foreach ($grouped_extensions as $group => $extensions) { - echo "".ucwords(escape($group)).""; + echo "
".ucwords(escape($group))."
"; echo "

"; echo "
"; foreach ($extensions as $ext_block) { @@ -488,7 +488,7 @@ if (sizeof($grouped_extensions) > 0) { } if (sizeof($other_extensions) > 0) { - echo "".$text['label-other_extensions'].""; + echo "
".$text['label-other_extensions']."
"; echo "

"; echo "
"; foreach ($other_extensions as $ext_block) {