From 66713b969b492868300c4866b8195d0a3e1420ea Mon Sep 17 00:00:00 2001 From: FusionPBX Date: Fri, 15 Sep 2023 23:01:12 -0600 Subject: [PATCH] Update app_defaults.php --- core/notifications/app_defaults.php | 44 ++++++++++++++--------------- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/core/notifications/app_defaults.php b/core/notifications/app_defaults.php index ce54510cc5..d9acb834d4 100644 --- a/core/notifications/app_defaults.php +++ b/core/notifications/app_defaults.php @@ -28,28 +28,28 @@ if ($domains_processed == 1) { //update the notifications table - if (is_array($_SESSION['switch']['scripts'])) { - $sql = "select count(*) from v_notifications "; - $database = new database; - $num_rows = $database->select($sql, null, 'column'); - if ($num_rows == 0) { - //build insert array - $array['notifications'][0]['notification_uuid'] = uuid(); - $array['notifications'][0]['project_notifications'] = 'false'; - //grant temporary permissions - $p = new permissions; - $p->add('notification_add', 'temp'); - //execute insert - $database = new database; - $database->app_name = 'notifications'; - $database->app_uuid = 'e746fbcb-f67f-4e0e-ab64-c414c01fac11'; - $database->save($array, false); - unset($array); - //revoke temporary permissions - $p->delete('notification_add', 'temp'); - } - unset($sql, $num_rows); - } + //if (is_array($_SESSION['switch']['scripts'])) { + // $sql = "select count(*) from v_notifications "; + // $database = new database; + // $num_rows = $database->select($sql, null, 'column'); + // if ($num_rows == 0) { + // //build insert array + // $array['notifications'][0]['notification_uuid'] = uuid(); + // $array['notifications'][0]['project_notifications'] = 'false'; + // //grant temporary permissions + // $p = new permissions; + // $p->add('notification_add', 'temp'); + // //execute insert + // $database = new database; + // $database->app_name = 'notifications'; + // $database->app_uuid = 'e746fbcb-f67f-4e0e-ab64-c414c01fac11'; + // $database->save($array, false); + // unset($array); + // //revoke temporary permissions + // $p->delete('notification_add', 'temp'); + // } + // unset($sql, $num_rows); + //} }