From 3f2bd69002efb67178b7713440782657380afb59 Mon Sep 17 00:00:00 2001 From: sunxyw Date: Wed, 21 Dec 2022 00:38:37 +0800 Subject: [PATCH] fix global define bootstrapper relative path --- src/ZM/Bootstrap/LoadGlobalDefines.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ZM/Bootstrap/LoadGlobalDefines.php b/src/ZM/Bootstrap/LoadGlobalDefines.php index 1c1b45ea..356a9c24 100644 --- a/src/ZM/Bootstrap/LoadGlobalDefines.php +++ b/src/ZM/Bootstrap/LoadGlobalDefines.php @@ -8,6 +8,6 @@ class LoadGlobalDefines { public function bootstrap(array $config): void { - require zm_dir(SOURCE_ROOT_DIR . '/src/Globals/global_defines_framework.php'); + require FRAMEWORK_ROOT_DIR . '/src/Globals/global_defines_framework.php'; } }