Update uri.php

This commit is contained in:
Namhyeon Go 2018-11-11 04:28:51 +09:00 committed by GitHub
parent 8019f9ad83
commit d524fe30fc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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);
}
}