This is so frustrating. I am trying to create a plugin that will parse html in certain userinfo fields.
So far I have this as a plugin in member_complete:
PHP Code:
if ($userinfo['field1'])
{
if (!is_object($bbcode_parser))
{
}
require_once('./includes/class_bbcode.php');
$parser =& new vB_BbCodeParser($vbulletin, fetch_tag_list());
$userinfo['field1'] = $bbcode_parser->do_parse($userinfo['field1'], true, true, true, true, true, true);
}
Any ideas?