Use this for vB 4.0.5
1) Edit ./includes/class_bbcode.php
2) Search:
PHP Code:
$templater = vB_Template::create($this->printable ? $this->quote_printable_template : $this->quote_template);
3) Add this above it:
PHP Code:
if ($this->contains_bbcode_img_tags($message))
{
$message = preg_replace('#\[img\]\s*(https?://([^<>*"]+|[a-z0-9/\\._\- !]+))\[/img\]#iUe', "\$this->handle_bbcode_url(str_replace('\\\"', '\"', '\\1'), '')", $message);
}
Thanks to vB Style for the vB 4.0.3 code, I had to modify it for vB 4.0.5 though.