Any idea what would cause this? I'm using the following condition on a page to restrict something so that only usergroup 6 can see it:
Code:
<?php
if ($vbulletin->userinfo['usergroupid'] == '6' )
{
echo "This is only visible to people in usergroup 6";}
?>
For me the reverse seems to be happening, ie. all usergroups
EXCEPT group 6 can see what's inside the quotes!