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.