summaryrefslogtreecommitdiffstats
path: root/lib/filestorage/commontest.php
diff options
context:
space:
mode:
authorRobin Appelman <icewind@owncloud.com>2012-02-29 23:42:40 +0100
committerRobin Appelman <icewind@owncloud.com>2012-02-29 23:44:05 +0100
commite76e4e75407cc672bf342f13bbd77392a93c1623 (patch)
tree4380736971ed6f68a32fe58de6aae7b199723338 /lib/filestorage/commontest.php
parentb23b5aae7fba9467fd0e6b6137268c894ea6f8e8 (diff)
downloadnextcloud-server-e76e4e75407cc672bf342f13bbd77392a93c1623.tar.gz
nextcloud-server-e76e4e75407cc672bf342f13bbd77392a93c1623.zip
add touch() to all storage backands, and make parameter optional
Diffstat (limited to 'lib/filestorage/commontest.php')
-rw-r--r--lib/filestorage/commontest.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/filestorage/commontest.php b/lib/filestorage/commontest.php
index dd552c6865b..512e7c1b66d 100644
--- a/lib/filestorage/commontest.php
+++ b/lib/filestorage/commontest.php
@@ -72,4 +72,7 @@ class OC_Filestorage_CommonTest extends OC_Filestorage_Common{
public function search($query){
return $this->storage->search($query);
}
+ public function touch($path, $mtime=null){
+ return $this->storage->touch($path,$mtime);
+ }
} \ No newline at end of file