What i did was made a new Function for parsing bbcode
take the orginal do_parse function in the class_bbcode.php and copy it. i pasted it and named it do_bulletin_parse
and made this small change in it
Code:
// ********************* REMOVE HTML CODES ***************************
if (!$do_html)
{
//$text = htmlspecialchars_uni($text);
}
$html_allowed = $do_html;
$text = $this->parse_whitespace_newlines($text, $do_nl2br);
$body = $bbcode_parser->do_bulletin_parse($body, true, true, true, true,true, true);