diff options
author | Bart Visscher <bartv@thisnet.nl> | 2012-07-21 00:12:04 +0200 |
---|---|---|
committer | Bart Visscher <bartv@thisnet.nl> | 2012-07-21 00:13:30 +0200 |
commit | 14af503374f5667e474de9c7f3762c7624d179a1 (patch) | |
tree | 475f86919efa1bd0b3cb68af5a58bdcf0c19c35f /lib/filestorage | |
parent | cdd9ffc8a5dba2d4c3d83d77fc7806fd017a6b97 (diff) | |
download | nextcloud-server-14af503374f5667e474de9c7f3762c7624d179a1.tar.gz nextcloud-server-14af503374f5667e474de9c7f3762c7624d179a1.zip |
Fix parameter order in OC_Filestorage_Common->hash
Diffstat (limited to 'lib/filestorage')
-rw-r--r-- | lib/filestorage/local.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/filestorage/local.php b/lib/filestorage/local.php index 0ed184c8025..d60f32b15be 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); } |