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>2013-01-28 22:44:42 +0400
committerRobin Appelman <icewind@owncloud.com>2013-01-28 22:46:17 +0400
commit15c6bb61708c3258e65d5f9940c8e574492d53f9 (patch)
tree60d62438b09cc328772f854961822184e5187b38 /files_archive
parent071b830c5b80084010a31c13981bf56bc6b01a40 (diff)
Archive: use updated fakedirstream api
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 81400406e..96fb14dc3 100644
--- a/files_archive/lib/storage.php
+++ b/files_archive/lib/storage.php
@@ -58,7 +58,7 @@ class Archive extends Common {
}
}
$id = md5($this->path . $path);
- \OC_FakeDirStream::$dirs[$id] = $content;
+ \OC\Files\Stream\Dir::register($id, $content);
return opendir('fakedir://' . $id);
}