I can successfully parse bbcode:
http://startrekforum.stgu.com/news/stonlinenews.shtml
But if you view the source, you can see that things like links do not have their quotes after their various tags.
My code is as follows:
Code:
require_once('global.php');
require_once('./includes/class_bbcode.php');
$bbcode_parser =& new vB_BbCodeParser($vbulletin, fetch_tag_list());
Code:
$topics_array[$x]['pagetext'] = $bbcode_parser->do_parse($topics_array[$x]['pagetext'], false, true, true, true);
Can you think of a reason why the quotes are being left out? It is wreaking havoc with html validation.