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=5f0abc1677e49b6cedf31e82e4bf5ab7f9b04644;hpb=35d4c1b15b01874ae6f70277869f94decda884de;ds=sidebyside 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; }