This is admin/model/tool/image.php lines 3 and 32-38:Nordikota wrote:I have. I tried it with a fresh OC install & no themes/mods installed. Same problem
Code: Select all
public function resize($filename, $width, $height) {
.............
if ($width_orig != $width || $height_orig != $height) {
$image = new Image(DIR_IMAGE . $image_old);
$image->resize($width, $height);
$image->save(DIR_IMAGE . $image_new);
} else {
copy(DIR_IMAGE . $image_old, DIR_IMAGE . $image_new);
}