From 2fef88c5a69273a5e69200ef12db6a5610d08233 Mon Sep 17 00:00:00 2001 From: Roeland Jago Douma Date: Thu, 28 Apr 2016 12:23:17 +0200 Subject: Make ownCloud work again in php 7.0.6 See https://bugs.php.net/bug.php?id=72117 --- lib/private/appframework/http/request.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/private/appframework/http/request.php b/lib/private/appframework/http/request.php index 8400882b88f..284c278d85b 100644 --- a/lib/private/appframework/http/request.php +++ b/lib/private/appframework/http/request.php @@ -243,6 +243,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]); } -- cgit v1.2.3