diff options
author | Michael Gapczynski <mtgap@owncloud.com> | 2012-12-28 15:06:12 -0500 |
---|---|---|
committer | Michael Gapczynski <mtgap@owncloud.com> | 2012-12-28 15:06:12 -0500 |
commit | 8bdfb040565eafb33bc27305463eb08374f14e32 (patch) | |
tree | 29a751ae13906060c7b2d6059b7c9688465b86f0 /lib/files/filesystem.php | |
parent | b03562670973fd924a042064644994639a59667d (diff) | |
download | nextcloud-server-8bdfb040565eafb33bc27305463eb08374f14e32.tar.gz nextcloud-server-8bdfb040565eafb33bc27305463eb08374f14e32.zip |
Fix shared folders
Diffstat (limited to 'lib/files/filesystem.php')
-rw-r--r-- | lib/files/filesystem.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/files/filesystem.php b/lib/files/filesystem.php index c5b56ba9f01..8183b8ff99c 100644 --- a/lib/files/filesystem.php +++ b/lib/files/filesystem.php @@ -276,6 +276,7 @@ class Filesystem { } // Load personal mount points $root = \OC_User::getHome($user); + self::mount('\OC\Files\Storage\Local', array('datadir' => $root), $user); if (is_file($root.'/mount.php')) { $mountConfig = include $root.'/mount.php'; if (isset($mountConfig['user'][$user])) { |