From d524fe30fca13bd60374fc529792328db3a5dc70 Mon Sep 17 00:00:00 2001 From: "Namhyeon, Go" Date: Sun, 11 Nov 2018 04:28:51 +0900 Subject: [PATCH] Update uri.php --- system/uri.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/system/uri.php b/system/uri.php index 9aa9b9c..b9a1f73 100644 --- a/system/uri.php +++ b/system/uri.php @@ -212,10 +212,10 @@ if(!function_exists("get_requested_values")) { } } -if(!function_exists("get_requested_condition")) { - function get_requested_condition($name, $method="_ALL") { +if(!function_exists("empty_requested_value")) { + function empty_requested_value($name, $method="_ALL") { $value = get_requested_value($name, $method); - return !(!$value); + return empty($value); } }