Page 1 of 1

[1.3.2] Image filetypes

Posted: Thu Sep 03, 2009 5:49 pm
by gingabot
Hi, I wondered why I couldn't save any other image filetype than JPG. Then I found out there's a small error in system/library/image.php, Line 42.

Code: Select all

if ($extension == ('jpeg' || 'jpg')) {
Well, I would be happy if that worked, but it does not ;)
Should be

Code: Select all

if ($extension == 'jpeg' || $extension == 'jpg') {
Greetz