Quote:
Originally Posted by Frugal
I really need help. I can't figure out the correct syntax to add more groups to the immunity.
I know I need to edit this section
Code:
// you cant change an administrators title :p
if (($touser['usergroupid'] == '6') || ($touser['userid'] == '1'))
And I know I need to use ors but I can't find the correct syntax. If someone can show me the correct syntax so that I can include groups 27 and 32 to this I'd be really grateful.
Frugal
|
Maybe try this...
Code:
if (is_member_of($touser, 6, 27, 32))
-CMX