I have this in vB PHP file, I am looking to modify it to work with specific usergroups.
PHP Code:
if (!in_array($vbulletin->userinfo['userid'],
preg_split('#\s*,\s*#s', $vbulletin->config['SpecialUsers']['superadministrators'],
-1, PREG_SPLIT_NO_EMPTY)) )
What can i change/replace so it work with vBulletin usergroups "Administrator" and "Custom Group" Instead of just superadmins only.
any idea
Thank you!
Thanks figured it out myself.
PHP Code:
if (!in_array($vbulletin->userinfo['usergroupid'], array(6, 60)))