diff options
author | Michael Gapczynski <mtgap@owncloud.com> | 2012-07-25 16:54:46 -0400 |
---|---|---|
committer | Michael Gapczynski <mtgap@owncloud.com> | 2012-07-30 10:07:19 -0400 |
commit | f328f53ec17a53efa3136c192dc035c731d94b7f (patch) | |
tree | 641872cbe62da49903e7d9e8d5430f4a5c8989fc /lib/filesystem.php | |
parent | 099b16350fd33f907f55d9894530b934d1be9a7a (diff) | |
download | nextcloud-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.php | 4 |
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='/'){ |