Make ownCloud work again in php 7.0.6
See https://bugs.php.net/bug.php?id=72117
This commit is contained in:
parent
ba0099f73a
commit
eb11ed1851
|
@ -271,6 +271,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]);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue