diff options
author | Michael Gapczynski <mtgap@owncloud.com> | 2012-07-24 21:17:43 -0400 |
---|---|---|
committer | Michael Gapczynski <mtgap@owncloud.com> | 2012-07-24 21:17:43 -0400 |
commit | ede2b8a55f640f7ad33fb73f78e73bbee2f64a72 (patch) | |
tree | 75cbf7359a4b4ac8c70d120a5c73e0e73fe174ee /lib/filestorage | |
parent | fc72d4b10f0b0a78faee2f133e833fa6ea10ced7 (diff) | |
download | nextcloud-server-ede2b8a55f640f7ad33fb73f78e73bbee2f64a72.tar.gz nextcloud-server-ede2b8a55f640f7ad33fb73f78e73bbee2f64a72.zip |
Missed a is_readable() call in local filestorage
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 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; |