diff options
author | Lukas Reschke <lukas@statuscode.ch> | 2013-02-11 05:17:24 -0800 |
---|---|---|
committer | Lukas Reschke <lukas@statuscode.ch> | 2013-02-11 05:17:24 -0800 |
commit | eed48c815915cb57e2e6af75ad052fefdf922a73 (patch) | |
tree | 1940590b64ba45cfc7bf3c7fc756f3e2054de788 /lib/files | |
parent | e70aef603f69304ece8105d0532cc55b15c3b7f1 (diff) | |
parent | d0d6d973a9672e2da874e79836a6cc78cd73892d (diff) | |
download | nextcloud-server-eed48c815915cb57e2e6af75ad052fefdf922a73.tar.gz nextcloud-server-eed48c815915cb57e2e6af75ad052fefdf922a73.zip |
Merge pull request #1608 from owncloud/fix-shared-links
Fix shared links
Diffstat (limited to 'lib/files')
-rw-r--r-- | lib/files/filesystem.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/files/filesystem.php b/lib/files/filesystem.php index 71bf3d8708d..a0c3c4b9b75 100644 --- a/lib/files/filesystem.php +++ b/lib/files/filesystem.php @@ -190,14 +190,14 @@ class Filesystem { } } - static public function init($root) { + static public function init($user, $root) { if (self::$defaultInstance) { return false; } self::$defaultInstance = new View($root); //load custom mount config - self::initMountPoints(); + self::initMountPoints($user); self::$loaded = true; |