From ede2b8a55f640f7ad33fb73f78e73bbee2f64a72 Mon Sep 17 00:00:00 2001 From: Michael Gapczynski Date: Tue, 24 Jul 2012 21:17:43 -0400 Subject: [PATCH] Missed a is_readable() call in local filestorage --- 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 b8b9cd0812c..658e14eaf9d 100644 --- a/lib/filestorage/local.php +++ b/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;