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;