diff options
author | Michael Gapczynski <mtgap@owncloud.com> | 2012-11-22 00:22:27 -0500 |
---|---|---|
committer | Michael Gapczynski <mtgap@owncloud.com> | 2012-11-22 00:23:11 -0500 |
commit | 77fdb16b7cb97f4e68949baf6796ef0e290b03f5 (patch) | |
tree | 00882b570794ec1ca519e0c5ee720d9cb2228c3c /lib | |
parent | 97380f3485fe40120b361f2f0bc9d12d060d6311 (diff) | |
download | nextcloud-server-77fdb16b7cb97f4e68949baf6796ef0e290b03f5.tar.gz nextcloud-server-77fdb16b7cb97f4e68949baf6796ef0e290b03f5.zip |
Remove incorrect extra parameter for init() call
Diffstat (limited to 'lib')
-rwxr-xr-x | lib/util.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/util.php b/lib/util.php index 89fbcd05cda..c79afe19572 100755 --- a/lib/util.php +++ b/lib/util.php @@ -52,7 +52,7 @@ class OC_Util { } //jail the user into his "home" directory \OC\Files\Filesystem::mount('\OC\Files\Storage\Local', array('datadir' => $user_root), $user); - \OC\Files\Filesystem::init($user_dir, $user); + \OC\Files\Filesystem::init($user_dir); $quotaProxy=new OC_FileProxy_Quota(); $fileOperationProxy = new OC_FileProxy_FileOperations(); |