This commit is contained in:
joyqi
2013-11-12 10:27:50 +08:00
parent f2f583efa4
commit 008657b5b5
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -700,7 +700,7 @@ class Typecho_Request
if ($params) {
$validated = true;
foreach ($params as $key => $val) {
$validated = empty($val) ? ($val != $this->get($key)) : ($val == $this->get($key));
$validated = empty($val) ? $this->__isset($key) : ($val == $this->get($key));
if (!$validated) {
break;