01-05-2011, 07:55 PM
|
|
|
Join Date: Oct 2010
Posts: 1,196
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by BirdOPrey5
Ahh yes, go to your Admin CP -> Plugin manager, go to the Advanced BB Code Permissions mod and go to the plugin: Advanced BBCode Permissions on hook: bbcode_parse_complete
Find the line: (It should be the only line)
Code:
$this->tag_list = $this->bbcode_tag_list;
Replace it with:
Code:
if (isset($this->bbcode_tag_list))
{
$this->tag_list = $this->bbcode_tag_list;
}
And you're set... it should work with other add-ons if you do this... it works within normal vbulletin pages without this change however.
|
Thank you
Tested and working
4.1 PL2
|