Browse Source

fix for webdav because initMounts() is triggered twice so we lost the root path

remotes/origin/stable6
Florin Peter 13 years ago
parent
commit
58a8d67a9b
  1. 4
      lib/files/filesystem.php

4
lib/files/filesystem.php

@ -236,7 +236,9 @@ class Filesystem {
}
static public function initMounts(){
self::$mounts = new Mount\Manager();
if(!self::$mounts) {
self::$mounts = new Mount\Manager();
}
}
/**

Loading…
Cancel
Save