[rt-users] combine 'and' 'or' in queries - cant do it?

Alex Vandiver alexmv at bestpractical.com
Mon May 1 11:04:01 EDT 2006


On Mon, 2006-05-01 at 10:55 -0400, TeleMole wrote:
> I tried that - when I clicked on save - the ands and ors were reverted :(

IIRC, due to the way the parse tree works, all of the operators in each
set or parens must be the same.  Instead of:
    (a OR b AND c)
..try the more explicit:
    ((a OR b) AND c)

 - Alex



More information about the rt-users mailing list