From af138fa6311ac686ec7f256788eb2a07784ac215 Mon Sep 17 00:00:00 2001 From: rub Date: Mon, 4 Dec 2006 22:08:35 +0000 Subject: Fixed Issue ID 0000593: *.jpeg support in PWG git-svn-id: http://piwigo.org/svn/trunk@1635 68402e56-0260-453c-a942-63ccdbb3a9ee --- admin/thumbnail.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'admin/thumbnail.php') diff --git a/admin/thumbnail.php b/admin/thumbnail.php index 594125a84..543b589cc 100644 --- a/admin/thumbnail.php +++ b/admin/thumbnail.php @@ -51,7 +51,7 @@ function RatioResizeImg($path, $newWidth, $newHeight, $tn_ext) // extension of the picture filename $extension = get_extension($filename); - if ($extension == 'jpg' or $extension == 'JPG') + if (in_array($extension, array('jpg', 'JPG', 'jpeg', 'JPEG'))) { $srcImage = @imagecreatefromjpeg($path); } -- cgit v1.2.3