Quote:
Originally Posted by Andreas
It's $vbulletin->userinfo['signature'] for the PHP
|
sorry about the wrong forum...must of had a brain fart or something.
thanks Andreas. i did try $vbulletin->userinfo['signature'] but not in the right combinations. changing the php code to this:
PHP Code:
if ($vbulletin->userinfo['signature'])
{
require_once(DIR . '/includes/class_bbcode.php');
$bbcode_parser =& new vB_BbCodeParser($vbulletin, fetch_tag_list());
$vbulletin->userinfo['signature'] = $bbcode_parser->parse($vbulletin->userinfo['signature'], 0, true);
$show['signature'] = true;
}
else
{
$show['signature'] = false;
}
and changing
$userinfo[signature] to
$bbuserinfo[signature] in the USERCP code was all that was needed. thanks for the help