Quote:
Originally Posted by Stangsta
By using [img] tags around the picture in the profile fields that are parsed.
|
Going way back for this one. Can't figure out what's wrong. I have parsed all of the fields that are multi-line text fields and double checked them and they are all correct. But when I place an image file in the [img] tags all it does is make it a link. Rather odd, because in the regular forum posts, it works fine.
This is a sample of my parser plug-in code
Code:
{
if (!is_object($bbcode_parser))
{
require_once(DIR . '/includes/class_bbcode.php');
$bbcode_parser =& new vB_BbCodeParser($vbulletin, fetch_tag_list());
}
$userinfo['field1'] = $bbcode_parser->parse($userinfo['field1'],0, true);
}
And yes, I have duplicated this for all of the fields I want parsed, and double checked to make sure all fields are changed to the values I need.