ATTENTION! Users of ADVANCED BB-CODE PERMISSIONS... There is a conflict that arises when a postbit has profile fields that are parsed:
To parse the profile fields in the post, the function
do_parse() is called directly, skipping the hook location
bbcode_parse_start. As a result, the BB-code tag list is not saved in memory, and when
bbcode_parse_complete is executed thereafter, it restores an empty tag list, resulting in nothing being parsed from that point onward.
To fix this error, make sure you are running the most recent build of
CES Parser Permissions, and modify the
Advanced BB-Code Permissions plugin for the hook
bbcode_parse_complete.
Replace the code with:
PHP Code:
if (!empty($this->bbcode_tag_list) AND (THIS_SCRIPT != 'misc'))
{
$this->tag_list = $this->bbcode_tag_list;
}