diff --git a/lib/private/appframework/http/request.php b/lib/private/appframework/http/request.php index c415e606dc..bdd40ef157 100644 --- a/lib/private/appframework/http/request.php +++ b/lib/private/appframework/http/request.php @@ -264,6 +264,9 @@ class Request implements \ArrayAccess, \Countable, IRequest { * @return bool */ public function __isset($name) { + if (in_array($name, $this->allowedKeys, true)) { + return true; + } return isset($this->items['parameters'][$name]); }