From 8019f9ad83161e5d3eab885e45d8e74c67459f1f Mon Sep 17 00:00:00 2001 From: "Namhyeon, Go" Date: Sun, 11 Nov 2018 04:23:06 +0900 Subject: [PATCH] Update uri.php --- system/uri.php | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/system/uri.php b/system/uri.php index 06245e5..9aa9b9c 100644 --- a/system/uri.php +++ b/system/uri.php @@ -198,13 +198,6 @@ if(!function_exists("get_requested_value")) { } } -if(!function_exists("get_requested_condition")) { - function get_requested_condition($name, $method="_ALL") { - $value = get_requested_value($name, $method); - return !(!$value); - } -} - if(!function_exists("get_requested_values")) { function get_requested_values($names, $method="_ALL", $escape_quotes=true, $escape_tags=false) { $values = array(); @@ -219,6 +212,13 @@ if(!function_exists("get_requested_values")) { } } +if(!function_exists("get_requested_condition")) { + function get_requested_condition($name, $method="_ALL") { + $value = get_requested_value($name, $method); + return !(!$value); + } +} + if(!function_exists("get_binded_requests")) { function get_binded_requests($rules, $method="_ALL") { $data = array();