summaryrefslogtreecommitdiffstats
path: root/lib/filestorage.php
diff options
context:
space:
mode:
authorMichael Gapczynski <mtgap@owncloud.com>2012-07-25 16:54:46 -0400
committerMichael Gapczynski <mtgap@owncloud.com>2012-07-25 16:55:01 -0400
commitf25ccaff59c135d7f1f22196bf266916ef131b35 (patch)
treed11baa501500bbb3bc25ab9b2beecfc9a03de47e /lib/filestorage.php
parent37bccf54f27288b99468467457a4740f32745366 (diff)
downloadnextcloud-server-f25ccaff59c135d7f1f22196bf266916ef131b35.tar.gz
nextcloud-server-f25ccaff59c135d7f1f22196bf266916ef131b35.zip
Fix filesystem hash, no longer using basicOperation()
Diffstat (limited to 'lib/filestorage.php')
-rw-r--r--lib/filestorage.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/filestorage.php b/lib/filestorage.php
index e786127d525..fd4ad36530e 100644
--- a/lib/filestorage.php
+++ b/lib/filestorage.php
@@ -45,7 +45,7 @@ abstract class OC_Filestorage{
abstract public function copy($path1,$path2);
abstract public function fopen($path,$mode);
abstract public function getMimeType($path);
- abstract public function hash($type,$path,$raw);
+ abstract public function hash($type,$path,$raw = false);
abstract public function free_space($path);
abstract public function search($query);
abstract public function touch($path, $mtime=null);