From 032a24cb288a63b55f7d94e2dbbe82b5e455a798 Mon Sep 17 00:00:00 2001 From: FusionPBX Date: Mon, 5 Aug 2024 15:52:51 -0600 Subject: [PATCH] Update domains.php --- resources/classes/domains.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/resources/classes/domains.php b/resources/classes/domains.php index 885aa7f6e5..ad6d3259fc 100644 --- a/resources/classes/domains.php +++ b/resources/classes/domains.php @@ -648,10 +648,9 @@ if (!class_exists('domains')) { //get the email queue settings $setting = new settings(["domain_uuid" => $domain_uuid]); - //get the list of installed apps from the core and mod directories and execute the php code in app_defaults.php + //get the list of installed apps from the core and mod directories and run the php code in app_defaults.php $default_list = glob($_SERVER["DOCUMENT_ROOT"] . PROJECT_PATH . "/*/*/app_defaults.php"); foreach ($default_list as &$default_path) { - //echo $default_path."
\n"; include($default_path); }