Reply to thread

The syntax is wrong.

[CODE]$xf.visitor.isMemberOf([5, 3, 7]) AND !$xf.visitor.isMemberOf([1, 2, 6])

[/CODE]

You can probably simplify this, though.


You probably only need:

[CODE]$xf.visitor.isMemberOf([5, 3, 7])

[/CODE]


Or:

[CODE]!$xf.visitor.isMemberOf([1, 2, 6])

[/CODE]


But not both.


Back
Top Bottom