Can you paste the code around 799 in class_postbit.php?
Nm, parse_bbcode() has a typo.
PHP Code:
function parse_bbcode()
{
if(is_member_of($this->post, X))
{
$this->post['message'] = $this->bbcode_parser->parse($this->post['pagetext'], $this->forum['forumid'], $this->post['allowsmilie'], true);
}
else
{
$this->post['message'] = $this->bbcode_parser->parse($this->post['pagetext'], $this->forum['forumid'], $this->post['allowsmilie']);
}
}