]> source.dussan.org Git - nextcloud-server.git/commitdiff
Don't throw a fatal, if is_file() parameter isn't
authorkondou <kondou@ts.unde.re>
Thu, 1 Aug 2013 19:01:26 +0000 (21:01 +0200)
committerkondou <kondou@ts.unde.re>
Thu, 1 Aug 2013 19:01:26 +0000 (21:01 +0200)
a 'valid path', but only a data/base64-string.

Related to #4283

lib/image.php

index c1b187608a6e1662f4ede1cc7855a6cb51500655..4bc38e20e56898f751d9463e13072653dd9aa767 100644 (file)
@@ -392,7 +392,7 @@ class OC_Image {
        */
        public function loadFromFile($imagepath=false) {
                // exif_imagetype throws "read error!" if file is less than 12 byte
-               if(!is_file($imagepath) || !file_exists($imagepath) || filesize($imagepath) < 12 || !is_readable($imagepath)) {
+               if(!@is_file($imagepath) || !file_exists($imagepath) || filesize($imagepath) < 12 || !is_readable($imagepath)) {
                        // Debug output disabled because this method is tried before loadFromBase64?
                        OC_Log::write('core', 'OC_Image->loadFromFile, couldn\'t load: '.$imagepath, OC_Log::DEBUG);
                        return false;