PHP | Problem -
public function resizeForGallery ()
{
$img = $this->SetHeight (200);
if ($img->Width > 370)
$img->SetWidth (370);
return $img;
}
15/06/2012 11:43am
PHP | Solution - Anonymous
public function resizeForGallery ()
{
$img = $this->SetHeight (200);
if ($img->Width > 370)
$img = $img->SetWidth (370);
return $img;
}
Pretty simple mistake :P