From: Bill Erickson Date: Wed, 29 Oct 2014 21:07:37 +0000 (-0400) Subject: kmain-163_#_search_again X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=083486d3c4e78a107a12ebdacbf1376ef1a9574a;p=working%2FEvergreen.git kmain-163_#_search_again Cross-port: 4adf71d --- diff --git a/Open-ILS/src/perlmods/lib/OpenILS/Application/Storage/Driver/Pg/QueryParser.pm b/Open-ILS/src/perlmods/lib/OpenILS/Application/Storage/Driver/Pg/QueryParser.pm index 3e96a06e49..1f5edacf41 100644 --- a/Open-ILS/src/perlmods/lib/OpenILS/Application/Storage/Driver/Pg/QueryParser.pm +++ b/Open-ILS/src/perlmods/lib/OpenILS/Application/Storage/Driver/Pg/QueryParser.pm @@ -100,7 +100,6 @@ sub quote_phrase_value { $value =~ s/^[*\^]// if $left_anchored; $value =~ s/[*\$]$// if $right_anchored; - $value = quotemeta($value); $value = '^' . $value if $left_anchored eq '^'; $value = "$value\$" if $right_anchored eq '$'; $value = '[[:<:]]' . $value if $left_wb && !$left_anchored;