Missed a is_readable() call in local filestorage

remotes/origin/stable45
Michael Gapczynski 13 years ago
parent fc72d4b10f
commit ede2b8a55f
  1. 2
      lib/filestorage/local.php

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

Loading…
Cancel
Save