diff options
author | Robin Appelman <icewind@owncloud.com> | 2012-10-26 23:26:12 +0200 |
---|---|---|
committer | Robin Appelman <icewind@owncloud.com> | 2012-10-26 23:26:12 +0200 |
commit | 99534271977ef5a4fd35ce119d6627bbcde45096 (patch) | |
tree | 184b8e770e9e1ac9d3726659d6f8e7e019fa5e7f /lib/fileproxy | |
parent | 7d6da68d532fe1b1299f3a724e70b8ec3960ec8d (diff) | |
download | nextcloud-server-99534271977ef5a4fd35ce119d6627bbcde45096.tar.gz nextcloud-server-99534271977ef5a4fd35ce119d6627bbcde45096.zip |
also use new cache api here
Diffstat (limited to 'lib/fileproxy')
-rw-r--r-- | lib/fileproxy/fileoperations.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/fileproxy/fileoperations.php b/lib/fileproxy/fileoperations.php index 23fb63fcfb1..47ccd8f8c26 100644 --- a/lib/fileproxy/fileoperations.php +++ b/lib/fileproxy/fileoperations.php @@ -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); } -}
\ No newline at end of file +} |