瀏覽代碼

fix user specific mount configuration

tags/v5.0.0alpha1
Robin Appelman 11 年之前
父節點
當前提交
012a907a8a
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2
    2
      lib/filesystem.php

+ 2
- 2
lib/filesystem.php 查看文件

@@ -232,8 +232,8 @@ class OC_Filesystem{
}
if(isset($mountConfig['user'])) {
foreach($mountConfig['user'] as $user=>$mounts) {
if($user==='all' or strtolower($user)===strtolower($user)) {
foreach($mountConfig['user'] as $mountUser=>$mounts) {
if($user==='all' or strtolower($mountUser)===strtolower($user)) {
foreach($mounts as $mountPoint=>$options) {
$mountPoint=self::setUserVars($mountPoint, $user);
foreach($options as &$option) {

Loading…
取消
儲存