From 594881d949184440784c59bde5a45d867a20b09c Mon Sep 17 00:00:00 2001 From: Fridolyn SOMERS Date: Fri, 14 Dec 2012 10:45:40 +0100 Subject: [PATCH] Bug 7518: searches with quotation marks don't work --- C4/Search.pm | 1 + 1 file changed, 1 insertion(+) diff --git a/C4/Search.pm b/C4/Search.pm index 1e850d9..b09326f 100644 --- a/C4/Search.pm +++ b/C4/Search.pm @@ -1260,6 +1260,7 @@ sub buildQuery { $remove_stopwords = 0; } else { $operands[$i] =~ s/\?/{?}/g; # need to escape question marks + $operands[$i] =~ s/"/\\"/g; # brakes CCL syntaxe } my $operand = $operands[$i]; my $index = $indexes[$i]; -- 1.7.9.5