Quote:
Originally Posted by Boofo
Unless you use the hack that merk made for mutiple ids in that code, it has to be 1 id per instamce. So you should have:
HTML Code:
<if condition="is_member_of($post, 5) OR is_member_of($post, 6) OR is_member_of($post, 7) OR is_member_of($post, 9)">$quickreply</if>
|
Last time i check you can use inarray
<if condition="in_array(is_member_of($bbuserinfo, array(5,6,7,9)))">$quickreply</if>
And note that post only works in the postbit, thus why we use bbuserinfo