Found an error in 3 templates
If you goto any Quoteit page you will see the page title is messed up.
PHP Code:
$vbulletin->options[bbtitle]
should be
PHP Code:
$vboptions[bbtitle]
It shows as Array[bbcode] in the browser because the tag use I believe is the ones used in VB 3.0.xx
These 3 templates need to be editted ( same edit in each one in the same place.)
quote_delquote
quote_addquote
quote_listquote
Find (right near the very top of each template)
PHP Code:
<title>$vbulletin->options[bbtitle]
replace with
PHP Code:
<title>$vboptions[bbtitle]
Now i need some help. I want to parse bbcode in context field output. I can't for the life of me remember how to do that.
Great hack I'd click install twice it I could

Jaks