Quote:
Originally Posted by rolliet
I have what is probably an easy question. How do I add more then 1 usergroup to the code?
if ($vbulletin->userinfo['usergroupid'] == '25' )
I have tried different things and still can only allow 1 usergroup to access the page.
Thanks
|
Its late and I havent tested this yet but try something like
PHP Code:
if ($vbulletin->userinfo['usergroupid'] == '25'
or $vbulletin->userinfo['usergroupid'] == '26'
or $vbulletin->userinfo['usergroupid'] == '27'
)