you were right, I just re-check and the hack does made that error.
here is the part -
Quote:
function size_check($image) {
global $maxsigheight, $maxsigwidth;
//parse_all img tags
$image_xy=@getimagesize($image);
if ($image_xy==NULL)
{
return "Image not found";
}
else {
//ok, the image exists! Lets do it eh!!
$im_width=$image_xy[0];
$im_height=$image_xy[1];
if ($im_width > $maxsigwidth)
{
return "Sorry, image size exceeds maximum width of ".$maxsigwidth.".";
}
if ($im_height > $maxsigheight)
{
return "Sorry, image size exceeds maximum height of ".$maxsigheight.".";
}
}
return "[img]" . $image . "[/img]";
}
It always goes to the
if ($image_xy==NULL)
{
return "Image not found";
}
the error is "Image not found" if I didn't clarify that already.
I don't know if someone had mention it on the support thread so i'll go check now and will edit my post later to let you know if more help is needed.