From 14af503374f5667e474de9c7f3762c7624d179a1 Mon Sep 17 00:00:00 2001 From: Bart Visscher <bartv@thisnet.nl> Date: Sat, 21 Jul 2012 00:12:04 +0200 Subject: [PATCH] Fix parameter order in OC_Filestorage_Common->hash --- lib/filestorage/local.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/filestorage/local.php b/lib/filestorage/local.php index 0ed184c802..d60f32b15b 100644 --- a/lib/filestorage/local.php +++ b/lib/filestorage/local.php @@ -156,7 +156,7 @@ class OC_Filestorage_Local extends OC_Filestorage_Common{ return $return; } - public function hash($type,$path,$raw){ + public function hash($path,$type,$raw=false){ return hash_file($type,$this->datadir.$path,$raw); } -- GitLab