dont try to use the filesystem when it isnt setup yet

This commit is contained in:
Robin Appelman 2012-01-31 12:44:01 +01:00
parent ffecc3e434
commit 803f86e0fc
2 changed files with 3 additions and 1 deletions

View File

@ -22,7 +22,7 @@
require_once( 'lib_share.php' );
if (!OC_Filesystem::is_dir('/Shared')) {
if (OC_Filesystem::$loaded and !OC_Filesystem::is_dir('/Shared')) {
OC_Filesystem::mkdir('/Shared');
}
OC_Filesystem::mount('OC_Filestorage_Shared',array('datadir'=>'/'.OC_User::getUser().'/files/Shared'),'/'.OC_User::getUser().'/files/Shared/');

View File

@ -47,6 +47,7 @@ class OC_Filesystem{
static private $storages=array();
static private $mounts=array();
static private $storageTypes=array();
public static $loaded=false;
private $fakeRoot='';
static private $defaultInstance;
@ -200,6 +201,7 @@ class OC_Filesystem{
return false;
}
self::$defaultInstance=new OC_FilesystemView($root);
self::$loaded=true;
}
/**