From 7969acfb0e9d2ea932278636a1bee499ee624ee0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s?= Date: Wed, 30 Aug 2023 17:20:36 -0400 Subject: [PATCH] Fix 99 for Apply Changes and 999 for Adding devices --- setup/var/www/html/admin/issabel_issabelpbx_auth.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/setup/var/www/html/admin/issabel_issabelpbx_auth.php b/setup/var/www/html/admin/issabel_issabelpbx_auth.php index 72aa92d..f6aa71f 100644 --- a/setup/var/www/html/admin/issabel_issabelpbx_auth.php +++ b/setup/var/www/html/admin/issabel_issabelpbx_auth.php @@ -87,9 +87,10 @@ $unserialized = unserialize($module_serialized[0]); // special issabelPBX section, not in modules.xml, needed for reload bar and also device type selection on extensions section - $reloadbar = array('menuitems'=>array('999'=>'Add Devices'),'embedcategory'=>'dummy'); + $adddevice = array('menuitems'=>array('999'=>'Add Devices'),'embedcategory'=>'dummy'); + $unserialized['999']=$adddevice; $reloadbar = array('menuitems'=>array('99'=>'Apply Changes'),'embedcategory'=>'dummy'); - $unserialized['999']=$reloadbar; + $unserialized['99']=$reloadbar; // We do not want to show ampusers section when loaded from issabel framework unset($unserialized['ampusers']);