cryrichter
New Member
KX - Image Not Found
Code:
http://www.vbulletin.org/forum/showthread.php?t=196719
http://www.vbulletin.org/forum/showthread.php?t=196719
function handle_bbcode_img_match($link)
{
$link = $this->strip_smilies(str_replace('\\"', '"', $link));
// remove double spaces -- fixes issues with wordwrap
$link = str_replace(array(' ', '"'), '', $link);
return '<img src="' . $link . '" border="0" alt="" />';
}
function handle_bbcode_img_match($link)
{
$link = $this->strip_smilies(str_replace('\\"', '"', $link));
// remove double spaces -- fixes issues with wordwrap
$link = str_replace(array(' ', '"'), '', $link);
if ($this->registry->options['kx_noimg_onoff'])
{
$check = @fsockopen($link, 80, $errno, $errstr, $this->registry->GPC['timeout']);
if ($check == true)
{
$link = $this->registry->options['kx_noimg_path'];
}
unset($check);
}
return '<img src="' . $link . '" border="0" alt="" />';
}
http://www.vbulletin.org/forum/showthread.php?t=196718