Quote:
Originally Posted by COBRAws
please aknowledge final tests =D
|
you can use the same instructions as the original author provded
BUT
PHP Code:
if(($user['usergroupid'] == 6) and ($bbuserinfo['usergroupid'] != 6))
{
$user['invisiblemark'] = '';
$onlinestatus = 0;
}
should be
PHP Code:
if(($user['usergroupid'] == 6) and ($vbulletin->userinfo['usergroupid'] != 6))
{
$user['invisiblemark'] = '';
$onlinestatus = 0;
}
replace all instances of $bbuserinfo['usergroupid'] to $vbulletin->userinfo['usergroupid']($bbuserinfo is an old vbulletin variable)