Any Chance of ismemberof Accepting Multiple Usergroup IDs in 1.1?

Do you mean like this?

<xen:if is="!{xen:helper ismemberof, $visitor, 3} AND !{xen:helper ismemberof, $visitor, 4}">

Or do you mean as an array?
 
Do you mean like this?

<xen:if is="!{xen:helper ismemberof, $visitor, 3} AND !{xen:helper ismemberof, $visitor, 4}">

Or do you mean as an array?
Like this:
<xen:if is="{xen:helper ismemberof, $visitor, 3, 4, 5,}">

Where 3,4,5 represent IDs. Of course, that's the vB approach and they may choose something like:
<xen:if is="{xen:helper ismemberof, $visitor, {xen:array 3,4,5}}">
 
The xen:array syntax is a little ugly in that instance, I'd prefer to have {xen:helper ismemberof, $user, 2, 3, 4, 5} I think.
 
Top Bottom