diff options
author | Björn Schießle <schiessle@owncloud.com> | 2012-10-18 17:12:30 +0200 |
---|---|---|
committer | Björn Schießle <schiessle@owncloud.com> | 2012-10-18 17:15:30 +0200 |
commit | 65b0824d35db1e2288250533d8ea5fa820055ece (patch) | |
tree | 20b5bd8142cb8e1a8c24eecdbd369f857f8fd362 /lib | |
parent | 2499c24b8b31845488adcdae76a0ababa737cf27 (diff) | |
download | nextcloud-server-65b0824d35db1e2288250533d8ea5fa820055ece.tar.gz nextcloud-server-65b0824d35db1e2288250533d8ea5fa820055ece.zip |
typo from previous commit fixed
Diffstat (limited to 'lib')
-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 e4e63cee486..8afef050832 100644 --- a/lib/filesystem.php +++ b/lib/filesystem.php @@ -214,7 +214,7 @@ class OC_Filesystem{ foreach($mountConfig['group'] as $group=>$mounts) {
if(OC_Group::inGroup($user,$group)) {
foreach($mounts as $mountPoint=>$options) {
- $mountPoint=self::($mountPoint, $user);
+ $mountPoint=self::setUserVars($mountPoint, $user);
foreach($options as &$option) {
$option=self::setUserVars($option, $user);
}
|