Thanks but no change, both work for default BBcode but not for custom.
--------------- Added [DATE]1291729000[/DATE] at [TIME]1291729000[/TIME] ---------------
Solved: Here is an explanation for anyone else hunting for this in the future - it really is simple once you know
Code:
if (!is_object($bbcode_parser))
{
require_once(DIR . '/includes/class_bbcode.php');
$bbcode_parser =& new vB_BbCodeParser($vbulletin, fetch_tag_list(),true);
$taskdesc = strip_tags($taskdesc);
$taskdesc = $bbcode_parser->parse($taskdesc,0,true);
}
All that is required is to an extra true after the fetch_tag_list() (highlighted in red). Thanks to the excellent code
documentation on vB_BbCodeParser