also use new cache api here

This commit is contained in:
Robin Appelman 2012-10-26 23:26:12 +02:00
parent 7d6da68d53
commit 9953427197
1 changed files with 2 additions and 2 deletions

View File

@ -29,9 +29,9 @@ class OC_FileProxy_FileOperations extends OC_FileProxy{
public function premkdir($path) {
if(!self::$rootView){
self::$rootView = new OC_FilesystemView('');
self::$rootView = new \OC\Files\View('');
}
return !self::$rootView->file_exists($path);
}
}
}