summaryrefslogtreecommitdiffstats
path: root/lib/filesystem.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/filesystem.php
parent37bccf54f27288b99468467457a4740f32745366 (diff)
downloadnextcloud-server-f25ccaff59c135d7f1f22196bf266916ef131b35.tar.gz
nextcloud-server-f25ccaff59c135d7f1f22196bf266916ef131b35.zip
Fix filesystem hash, no longer using basicOperation()
Diffstat (limited to 'lib/filesystem.php')
-rw-r--r--lib/filesystem.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/filesystem.php b/lib/filesystem.php
index a5edcf5bab3..81370d4e178 100644
--- a/lib/filesystem.php
+++ b/lib/filesystem.php
@@ -452,8 +452,8 @@ class OC_Filesystem{
static public function getMimeType($path){
return self::$defaultInstance->getMimeType($path);
}
- static public function hash($type,$path){
- return self::$defaultInstance->hash($type,$path);
+ static public function hash($type,$path, $raw = false){
+ return self::$defaultInstance->hash($type,$path, $raw);
}
static public function free_space($path='/'){