Update uri.php

This commit is contained in:
Namhyeon Go 2019-04-22 13:23:46 +09:00 committed by GitHub
parent 895e547acd
commit ca116cb935
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -326,9 +326,9 @@ if(!check_function_exists("get_binded_requests")) {
foreach($rules as $k=>$v) {
if(!$equals_kv) {
$data[$v] = get_requested_value($k);
$data[$v] = get_requested_value($k); // if dictionary
} else {
$data[$k] = get_requested_value($k);
$data[$v] = get_requested_value($v); // if non-dictionary
}
}