@@ -, +, @@ --- C4/Search.pm | 1 + 1 file changed, 1 insertion(+) --- a/C4/Search.pm +++ a/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; # breaks CCL syntaxe } my $operand = $operands[$i]; my $index = $indexes[$i]; --