Sorry, I should have been more specific. without asking the user to place quotes around their query is there anyway for webinator to automatically treat the search query as if it were in quotes.
thanks.
In qpar replace
<$q=$txtquery>
with something like this (untested)
<rex '"' $txtquery>
<if $ret eq ""><!-- no quotes, quote the whole thing -->
<strfmt '"%s"' $txtquery>
<$q=$ret>
<else><!-- has quotes, respect them -->
<$q=$txtquery>
</if>