From c29793721fdfe9803a95d47629fd01ca4f6cdd0f Mon Sep 17 00:00:00 2001 From: "Namhyeon, Go" Date: Sat, 26 May 2018 02:14:44 +0900 Subject: [PATCH] Update index.php --- index.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/index.php b/index.php index 70584b1..e121cdb 100644 --- a/index.php +++ b/index.php @@ -18,8 +18,9 @@ foreach($load_systems as $system_name) { if(file_exists($system_inc_file)) { if($system_name == "base") { include($system_inc_file); + register_loaded("system", $system_inc_file); } else { - include_isolate($system_inc_file, $scope); + loadModule($system_name, $scope); } } }