From this thread:
https://vborg.vbsupport.ru/showthread.php?t=82693
Quote:
Originally Posted by Andreas
PHP Code:
require_once(DIR . '/includes/class_bbcode.php');
$parser =& new vB_BbCodeParser($vbulletin, fetch_tag_list());
$parsed_text = $parser->do_parse($text, $do_html, $do_smilies, $do_bbcode, $do_imgcode, $do_nl2br, $cachable);
|
I'm doing that, however, I can't parse all the BBCode. For example, it doesn't parse the color code. I have set these variables:
Code:
$do_html = True;
$do_smilies = True;
$do_imgcode = True;
$do_nl2br = True;
What should I do?