diff options
author | Robin Appelman <icewind1991@gmail.com> | 2011-10-18 21:19:13 +0200 |
---|---|---|
committer | Robin Appelman <icewind1991@gmail.com> | 2011-10-18 21:19:13 +0200 |
commit | b975f1151451785f8350a12bf63d8fd63f0d04b4 (patch) | |
tree | b75af170f28214636ebee26dfe2235e3dbaff338 /lib/filesystem.php | |
parent | 28ab39073a8ea942a7c299dc41ddf6023dd093de (diff) | |
download | nextcloud-server-b975f1151451785f8350a12bf63d8fd63f0d04b4.tar.gz nextcloud-server-b975f1151451785f8350a12bf63d8fd63f0d04b4.zip |
make sharing work with the new mouting mechanism
Diffstat (limited to 'lib/filesystem.php')
-rw-r--r-- | lib/filesystem.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/filesystem.php b/lib/filesystem.php index 60fd051f303..3497431f1ee 100644 --- a/lib/filesystem.php +++ b/lib/filesystem.php @@ -168,7 +168,7 @@ class OC_Filesystem{ if(substr($mountpoint,0,1)!=='/'){ $mountpoint='/'.$mountpoint; } - self::$mounts[self::$fakeRoot.$mountpoint]=array('type'=>$type,'arguments'=>$arguments); + self::$mounts[$mountpoint]=array('type'=>$type,'arguments'=>$arguments); } /** |