diff options
author | Sam Tuke <samtuke@owncloud.com> | 2012-06-19 19:42:40 +0100 |
---|---|---|
committer | Sam Tuke <samtuke@owncloud.com> | 2012-06-19 19:42:40 +0100 |
commit | 28a72e0e3c25ecf8cc5ab61a4398ab687072b203 (patch) | |
tree | c1d3a0f381e1fb6202f282f09d15ffb698d33d17 /apps/files_archive | |
parent | f11e4d7cd6c5cae9a0be52dff0bb2f32e20e7099 (diff) | |
download | nextcloud-server-28a72e0e3c25ecf8cc5ab61a4398ab687072b203.tar.gz nextcloud-server-28a72e0e3c25ecf8cc5ab61a4398ab687072b203.zip |
Fixed deleteAll function for deleting all old versions of files (expireAll)
Added new readdir() method to all storage classes and handlers (only working implementation in local.php)
Diffstat (limited to 'apps/files_archive')
-rw-r--r-- | apps/files_archive/lib/storage.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/files_archive/lib/storage.php b/apps/files_archive/lib/storage.php index 86761663611..2f10d6a3e4e 100644 --- a/apps/files_archive/lib/storage.php +++ b/apps/files_archive/lib/storage.php @@ -49,6 +49,7 @@ class OC_Filestorage_Archive extends OC_Filestorage_Common{ OC_FakeDirStream::$dirs[$id]=$content; return opendir('fakedir://'.$id); } + public function readdir($path){} public function stat($path){ $ctime=filectime($this->path); $path=$this->stripPath($path); |