The following part is never reach.
elseif (!$new_width && !$new_height) {
$new_width = $width;
$new_height = $height;
}
Because we test for !$new_width && !$new_height above with
if ($new_width == 0 && $new_height == 0)
This part should be removed or replaced
because obviously we can not do :
if ($new_width == 100 && $new_height == 100)
Original issue reported on code.google.com by gibbo...@gmail.com on 25 Nov 2010 at 2:27
Original issue reported on code.google.com by
gibbo...@gmail.com
on 25 Nov 2010 at 2:27