From b082c8c81183b4fce97b634115132c57b57627e6 Mon Sep 17 00:00:00 2001 From: Michael Save Date: Tue, 13 Mar 2012 03:48:12 +1100 Subject: [PATCH] detect lowercase GIFs --- inc/image.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/inc/image.php b/inc/image.php index bacfbed9..f4fb01a3 100644 --- a/inc/image.php +++ b/inc/image.php @@ -155,7 +155,7 @@ } } public function to($src) { - if(preg_match('/\.gif$/', $src)) + if(preg_match('/\.gif$/i', $src)) $this->image->writeImages($src, true); else $this->image->writeImage($src); @@ -172,7 +172,7 @@ public function resize() { global $config; - if(preg_match('/\.gif$/', $src)) { + if(preg_match('/\.gif$/i', $src)) { $this->image = new Imagick(); $this->image->setFormat('gif');