diff options
author | Vincent Petry <pvince81@owncloud.com> | 2015-08-20 10:23:16 +0200 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2015-08-20 10:23:16 +0200 |
commit | 3e7e7511ca302ded2ce834d2c1f1eef0e3081cd9 (patch) | |
tree | 1514f2209f937c9a0cdd424c0d7d0df2b20ee946 | |
parent | 08161027c47284102c44b36cb3253702df4c29a8 (diff) | |
parent | 8cd47e4f033660b70f28b0886882c7b7a42b13f5 (diff) | |
download | nextcloud-server-3e7e7511ca302ded2ce834d2c1f1eef0e3081cd9.tar.gz nextcloud-server-3e7e7511ca302ded2ce834d2c1f1eef0e3081cd9.zip |
Merge pull request #18438 from owncloud/ext-session-fix
Fix 'Declaration of SessionStorageWrapper::__construct()...'
-rw-r--r-- | apps/files_external/lib/sessionstoragewrapper.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_external/lib/sessionstoragewrapper.php b/apps/files_external/lib/sessionstoragewrapper.php index 91be7eb1903..f8f5aba53a2 100644 --- a/apps/files_external/lib/sessionstoragewrapper.php +++ b/apps/files_external/lib/sessionstoragewrapper.php @@ -33,7 +33,7 @@ class SessionStorageWrapper extends PermissionsMask { /** * @param array $arguments ['storage' => $storage] */ - public function __construct(array $arguments) { + public function __construct($arguments) { // disable sharing permission $arguments['mask'] = Constants::PERMISSION_ALL & ~Constants::PERMISSION_SHARE; parent::__construct($arguments); |