Quote:
Originally Posted by Mickie D
PHP Code:
if ($vbulletin->userinfo['usergroupid'] != 6 AND 7)
|
That would work for checking 6 but not 7. What you'd want is this:
PHP Code:
if ($vbulletin->userinfo['usergroupid'] != 6 AND $vbulletin->userinfo['usergroupid'] != 7)
Oh, and in my post above I forgot that you were checking for !=, so you'd of course want to use !in_array() and !is_memebr_of().