From 2f2967b5a66aea04fdffc3428db7aa05f4fb9bb9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=B5=9C=EC=A4=80=ED=9D=A0?= Date: Wed, 2 Apr 2025 17:14:58 +0900 Subject: [PATCH] dbms_primeidc_init...1 --- extdbms/lib/Core/App.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extdbms/lib/Core/App.php b/extdbms/lib/Core/App.php index 0a85c1f..ddd92bf 100644 --- a/extdbms/lib/Core/App.php +++ b/extdbms/lib/Core/App.php @@ -53,7 +53,7 @@ abstract class App { $route = count($segments) ? $segments[0] : ''; $route = $this->routeModule($route); - $module = "lib\\Controllers\\" . $route; + $module = "lib" . DIRECTORY_SEPARATOR . "Controllers" . DIRECTORY_SEPARATOR . $route; if (is_dir(ROOT_PATH . DIRECTORY_SEPARATOR . $module)) { array_shift($segments); $this->_module = $module . DIRECTORY_SEPARATOR;