An additional check to prevent PHP-notices that might corrupt the image data

This commit is contained in:
Tobias Hößl 2012-08-12 08:27:05 +00:00
parent a30ee1587f
commit d233ccbcc7
1 changed files with 1 additions and 1 deletions

View File

@ -137,7 +137,7 @@ function privacy_image_cache_init() {
}
// Writing in cachefile
if (isset($cachefile) && ($cachefile != '') and (exif_imagetype($cachefile) > 0))
if (isset($cachefile) && ($cachefile != '') and (file_exists($cachefile)) and (exif_imagetype($cachefile) > 0))
file_put_contents($cachefile, $img_str);
header("Content-type: $mime");