Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/apps.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin Appelman <icewind@owncloud.com>2012-10-10 15:18:05 +0400
committerRobin Appelman <icewind@owncloud.com>2012-10-10 15:18:05 +0400
commit13f8c84f2a411b20c0448156620a6586e70b778d (patch)
tree007348308780e25e03403911890850098a5b513c /files_archive
parent8a6c596d788c97edc37085087ceb8f1f38c94e91 (diff)
don't use depricated OC_Filesystem
Diffstat (limited to 'files_archive')
-rw-r--r--files_archive/lib/storage.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/files_archive/lib/storage.php b/files_archive/lib/storage.php
index c725dbcf6..e42c809e4 100644
--- a/files_archive/lib/storage.php
+++ b/files_archive/lib/storage.php
@@ -175,7 +175,7 @@ class Archive extends Common {
$archive = substr($path, 0, $pos + strlen($ext) - 1);
if (self::$rootView->file_exists($archive) and array_search($archive, self::$mounted) === false) {
$localArchive = self::$rootView->getLocalFile($archive);
- \OC_Filesystem::mount('\OC\Files\Storage\Archive', array('archive' => $localArchive), $archive . '/');
+ \OC\Files\Filesystem::mount('\OC\Files\Storage\Archive', array('archive' => $localArchive), $archive . '/');
self::$mounted[] = $archive;
}
}