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.
|
I tried that too... and no go.
I am still getting the same error message as others:
Quote:
Warning: Invalid argument supplied for foreach() in [path]/includes/functions_editor.php(470) : eval()'d code on line 122
|
Could it have anything to do with custom BBCodes? I've added a few of them, and they are not showing up on the CKE Editor on the page that I am getting this error on. And on other pages where I am not getting this error, those custom BBCodes do show up.
And it only shows up on the Article pages that have CKE Editor for comments enabled (at the bottom of the article)... nowhere else.
That might be a hint...