I'm trying to get certain custom user fields to parse, on postbit_legacy.
I did this plugin in member_complete, but it's still not working. what am I doing wrong?
Quote:
if ($userinfo['field12'])
{
if (!is_object($bbcode_parser))
{
require_once(DIR . '/includes/class_bbcode.php');
$bbcode_parser =& new vB_BbCodeParser($vbulletin, fetch_tag_list());
}
$userinfo['field12'] = $bbcode_parser->parse($userinfo['field12'],0, true);
}
|