summaryrefslogtreecommitdiffstats
path: root/lib/filestorage
diff options
context:
space:
mode:
authorSam Tuke <samtuke@owncloud.com>2012-06-20 18:25:12 +0100
committerSam Tuke <samtuke@owncloud.com>2012-06-20 18:25:12 +0100
commit72215a818d0e222af80000909f9fa78243112533 (patch)
tree54716cbc93bdfef0513043ef4528e49ac395b3cf /lib/filestorage
parentd6bf62ea4eb39cba5fbf8100cd8b56351cee6d0b (diff)
downloadnextcloud-server-72215a818d0e222af80000909f9fa78243112533.tar.gz
nextcloud-server-72215a818d0e222af80000909f9fa78243112533.zip
added new user settings interface for deleting old file versions
fixed OCA_VersionsexpireAll() to use native PHP readdir() removed local storage implementation of readdir()
Diffstat (limited to 'lib/filestorage')
-rw-r--r--lib/filestorage/local.php3
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/filestorage/local.php b/lib/filestorage/local.php
index 27794fe17c0..44a2ab0f634 100644
--- a/lib/filestorage/local.php
+++ b/lib/filestorage/local.php
@@ -20,9 +20,6 @@ class OC_Filestorage_Local extends OC_Filestorage{
public function opendir($path){
return opendir($this->datadir.$path);
}
- public function readdir($handle){
- return readdir($handle);
- }
public function is_dir($path){
if(substr($path,-1)=='/'){
$path=substr($path,0,-1);