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-30 10:07:19 -0400
commitf328f53ec17a53efa3136c192dc035c731d94b7f (patch)
tree641872cbe62da49903e7d9e8d5430f4a5c8989fc /lib/filesystem.php
parent099b16350fd33f907f55d9894530b934d1be9a7a (diff)
downloadnextcloud-server-f328f53ec17a53efa3136c192dc035c731d94b7f.tar.gz
nextcloud-server-f328f53ec17a53efa3136c192dc035c731d94b7f.zip
Fix filesystem hash, no longer using basicOperation()
Conflicts: lib/filesystemview.php
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 813590b00bb..2c7df5daa3c 100644
--- a/lib/filesystem.php
+++ b/lib/filesystem.php
@@ -458,8 +458,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='/'){