From f96405e78adff44081dd703c14e9fa1da426fd4b Mon Sep 17 00:00:00 2001 From: Thomas Mueller Date: Thu, 6 Dec 2012 14:56:12 +0100 Subject: [PATCH] [files_external] mount filesystems for all users --- lib/filesystem.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/filesystem.php b/lib/filesystem.php index f54cc6492e7..38326fe3f6a 100644 --- a/lib/filesystem.php +++ b/lib/filesystem.php @@ -233,7 +233,7 @@ class OC_Filesystem{ if(isset($mountConfig['user'])) { foreach($mountConfig['user'] as $mountUser=>$mounts) { - if($user==='all' or strtolower($mountUser)===strtolower($user)) { + if($mountUser==='all' or strtolower($mountUser)===strtolower($user)) { foreach($mounts as $mountPoint=>$options) { $mountPoint=self::setUserVars($mountPoint, $user); foreach($options as &$option) {