Merge pull request #2218 from owncloud/fix-mounting-all
Fix variable for mounting for all users, fix #357
This commit is contained in:
commit
11251ec8a8
1 changed files with 1 additions and 1 deletions
|
@ -254,7 +254,7 @@ class 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($user, $mountPoint);
|
||||
foreach ($options as &$option) {
|
||||
|
|
Loading…
Reference in a new issue