From 2026793e1da77ce8144e6fb694df97f4ff783b5e Mon Sep 17 00:00:00 2001 From: markjcrane Date: Sun, 3 Apr 2016 13:46:46 -0600 Subject: [PATCH] Run upgrade to call app defaults. --- core/install/resources/classes/install_switch.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/core/install/resources/classes/install_switch.php b/core/install/resources/classes/install_switch.php index 298d3a9b54..3ba1add4f4 100644 --- a/core/install/resources/classes/install_switch.php +++ b/core/install/resources/classes/install_switch.php @@ -98,6 +98,11 @@ include "root.php"; function install_phase_2() { $this->write_progress("Install phase 2 started for switch"); //$this->create_config_lua(); + + //run all app_defaults.php files + $domain = new domains; + $domain->upgrade(); + $this->restart_switch(); $this->write_progress("Install phase 2 completed for switch"); }