Missed a is_readable() call in local filestorage

This commit is contained in:
Michael Gapczynski 2012-07-24 21:17:43 -04:00
parent fc72d4b10f
commit ede2b8a55f

View file

@ -129,7 +129,7 @@ class OC_Filestorage_Local extends OC_Filestorage_Common{
}
public function getMimeType($path){
if($this->is_readable($path)){
if($this->isReadable($path)){
return OC_Helper::getMimeType($this->datadir.$path);
}else{
return false;