From b9bf07a5e659b50a31ce39423925dc17e241b2d4 Mon Sep 17 00:00:00 2001 From: FusionPBX Date: Sat, 14 Jan 2017 14:33:05 -0700 Subject: [PATCH] Add the settings method to the upgrade method. --- resources/classes/domains.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/resources/classes/domains.php b/resources/classes/domains.php index 3f331f2e47..f773c03f81 100644 --- a/resources/classes/domains.php +++ b/resources/classes/domains.php @@ -228,6 +228,9 @@ if (!class_exists('domains')) { //get the PROJECT PATH include "root.php"; + //check for default settings + $this->settings(); + //get the list of installed apps from the core and app directories (note: GLOB_BRACE doesn't work on some systems) $config_list_1 = glob($_SERVER["DOCUMENT_ROOT"].PROJECT_PATH."/*/*/app_config.php"); $config_list_2 = glob($_SERVER["DOCUMENT_ROOT"].PROJECT_PATH."/*/*/app_menu.php");