Quote:
Originally Posted by djnoz
I'm afraid it still doesn't work. I'm testing it by placing echo text at the end of global.php, as part of the hack involves modifications to the php code.
PHP Code:
echo $bbuserinfo[usergroupid]; if($bbuserinfo[usergroupid] == 15) { echo "This user also belongs to usergroup 15"; }
For a standard user who's been added to additional usergroup 15, this code just returns "2" at the top of each page (the id for registered members)
Please help! Thanks 
|
First, vB3 hacking isn't allowed. Second, you should place it in the phpinclude_start template if you want to globalized.
Now, use:
PHP Code:
if($bbuserinfo[usergroupid] == 15)
{
echo("You are part of this usergroup, 15");
}