Fix parameter order in OC_Filestorage_Common->hash

This commit is contained in:
Bart Visscher 2012-07-21 00:12:04 +02:00
parent cdd9ffc8a5
commit 14af503374
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}