Quote:
Originally Posted by toolblast
And if you want multiple groups to be able to access the content:
Code:
<if condition="is_member_of($bbuserinfo, 4) // Mods
OR is_member_of($bbuserinfo, 5) // Supermods
OR is_member_of($bbuserinfo, 6)"> // Admin
Insert the special content here.
</if>
|
is_member_of can be overloaded, a shorter version of the above could be:
Code:
is_member_of($bbuserinfo, array(5, 6, 7))
BTW, group 7 is mods, not group 4.