Yep Ive fixed this a week ago on my own board but havent found time to update the hack.
Replace the handle_bbcode_img_match function with this one:
PHP Code:
function handle_bbcode_img_match($link)
{
// IMPORTANT - REPLACE THE FOLLOWING 2 VARIABLES WITH YOUR INFORMATION
$img_replacement = "images/dww/button_imagebig.gif"; // <-- This is the button/image that will be displayed instead of the big image.
$img_max_width = 520; // <-- This is the maximum width that an image is allowed to be viewed safely.
$link = str_replace('\\"', '"', $link);
// remove double spaces -- fixes issues with wordwrap
$link = str_replace(' ', '', $link);
usleep(1500);
if (@fclose(@fopen("$link", "r"))) {
$img_width = getimagesize("$link");
if ($img_width[0] > $img_max_width) {
srand((double)microtime()*1000000);
$number = rand(10,100);
$inp_string = "<a href=\"javascript:toggle_imgview('bigimg".$number."')\"><img src=\"".$img_replacement."\" alt=\"VB: Image Not Found\" border=\"0\" /></a><br />\n";
$inp_string .= "<div style=\"position:absolute;display:none;z-index:1;width:".$img_width[0]."px;height:".$img_width[1]."px;\" id=\"bigimg".$number."\"><img src=\"".$link."\" border=\"0\" alt=\"\" /></div>\n";
return $inp_string;
} else return '<img src="' . $link . '" border="0" alt="" />';
} else return '<strong>VB Error: Image Not Found</strong>';
}