From 8a3c90d37ca6b175fa899b1b23a7750f5ce6cb66 Mon Sep 17 00:00:00 2001 From: "Namhyeon, Go" Date: Tue, 17 Aug 2021 14:48:35 +0900 Subject: [PATCH] Update uri.php --- system/uri.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/uri.php b/system/uri.php index fadae6e..04dca9a 100644 --- a/system/uri.php +++ b/system/uri.php @@ -69,7 +69,7 @@ if(!is_fn("read_route")) { } if(strpos($uri, $base_route) == 0) { - $_routes = explode("/", substr($nevt['self'], strlen($base_route))); + $_routes = explode("/", substr($uri, strlen($base_route))); foreach($_routes as $_route) { if($_route != "index.php") { $route = $_route;