Log in

View Full Version : IMG to URL BBCode Converter (in Quotes)


Dirt Bike Addict
07-29-2010, 02:29 PM
I'm looking for a plug-in for 4.0.x that will automatically turn to when used within the tag. Something like this Click Here (https://vborg.vbsupport.ru/showthread.php?t=155629&highlight=IMG+URL+BBCode+Converter) except for 4.0.x

Thanks

Dirt Bike Addict
08-01-2010, 05:27 PM
Ok I finally figured it out.

For vB 4.0.3

1) Edit ./includes/class_bbcode.php
2) Search:
$templater = vB_Template::create($this->printable ? 'bbcode_quote_printable' : 'bbcode_quote');3) Add this above it:
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);
}

For vB 4.0.5

1) Edit ./includes/class_bbcode.php
2) Search:
$templater = vB_Template::create($this->printable ? $this->quote_printable_template : $this->quote_template);3) Add this above it:
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.