X-Git-Url: http://git.indexdata.com/?p=irspy-moved-to-github.git;a=blobdiff_plain;f=lib%2FZOOM%2FIRSpy%2FUtils.pm;h=82c7ece96f5bda655b24ee135af7b6b49936bfb1;hp=e567eff86ca9c4e90398d8ff15d410f838361360;hb=5ca5d42ae382a789824ada053f1a6180b15a3a15;hpb=77c1afb9cfe96df5a0caedf295ccec591a697239 diff --git a/lib/ZOOM/IRSpy/Utils.pm b/lib/ZOOM/IRSpy/Utils.pm index e567eff..82c7ece 100644 --- a/lib/ZOOM/IRSpy/Utils.pm +++ b/lib/ZOOM/IRSpy/Utils.pm @@ -1,4 +1,4 @@ -# $Id: Utils.pm,v 1.31 2007-05-03 12:41:58 mike Exp $ +# $Id: Utils.pm,v 1.32 2007-05-11 13:54:42 mike Exp $ package ZOOM::IRSpy::Utils; @@ -85,7 +85,7 @@ sub xml_encode { sub cql_quote { my($term) = @_; - $term =~ s/([""\\])/\\$1/g; + $term =~ s/([""\\*?])/\\$1/g; $term = qq["$term"] if $term =~ /[\s""\/]/; return $term; }