Index: openacs-4/packages/xowiki/tcl/xowiki-www-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/xowiki/tcl/xowiki-www-procs.tcl,v diff -u -r1.202 -r1.203 --- openacs-4/packages/xowiki/tcl/xowiki-www-procs.tcl 26 Nov 2008 23:06:04 -0000 1.202 +++ openacs-4/packages/xowiki/tcl/xowiki-www-procs.tcl 11 Dec 2008 00:37:10 -0000 1.203 @@ -538,6 +538,7 @@ foreach clause [split [string map [list $logical_op \x00] $input_expr] \x00] { if {[regexp {^(.*[^<>])\s*([=<>]|<=|>=|contains)\s*([^=]?.*)$} $clause _ lhs op rhs_expr]} { set lhs [string trim $lhs] + set rhs_expr [string trim $rhs_expr] if {[string range $lhs 0 0] eq "_"} { set lhs_var [string range $lhs 1 end] set rhs [split $rhs_expr |]