Quote:
Originally Posted by Dismounted
Code:
<if condition="is_member_of($bbuserinfo, 2) AND is_member_of($bbuserinfo, 15)">
Is the same as:
Code:
<if condition="is_member_of($bbuserinfo, 2, 15)">
(Note this only applies in this case, and does not apply to every function.)
|
I thought this:
Code:
<if condition="is_member_of($bbuserinfo, 2, 15)">
Is the same as this:
Code:
<if condition="is_member_of($bbuserinfo, 2) OR is_member_of($bbuserinfo, 15)">
At least, that is the way I've always used it.