[1.3.2] Image filetypes
Posted: Thu Sep 03, 2009 5:49 pm
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.
Well, I would be happy if that worked, but it does not 
Should be
Greetz
Code: Select all
if ($extension == ('jpeg' || 'jpg')) {

Should be
Code: Select all
if ($extension == 'jpeg' || $extension == 'jpg') {