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