From 7283c4caeeb3ba56163c93af211ee24bfc3946f1 Mon Sep 17 00:00:00 2001 From: czaks Date: Sat, 22 Feb 2014 15:54:46 +0100 Subject: [PATCH] fix pngs better --- inc/image.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/inc/image.php b/inc/image.php index 59182693..eb8eb79b 100644 --- a/inc/image.php +++ b/inc/image.php @@ -361,10 +361,10 @@ class ImageConvert extends ImageBase { $this->width, $this->height, escapeshellarg($this->temp)))) || !file_exists($this->temp)) { - //if (!preg_match ('/sBIT: invalid/', $error)) { - // $this->destroy(); - // error(_('Failed to resize image!'), null, $error); - //} + if (!file_exists($this->temp)) { + $this->destroy(); + error(_('Failed to resize image!'), null, $error); + } } if ($size = $this->get_size($this->temp)) { $this->width = $size[0];