From 5bb8b796f8f6a6da5e9eb2fc1d47bacaa5e20664 Mon Sep 17 00:00:00 2001 From: Lyon3 Team Date: Mon, 8 Oct 2012 19:06:04 +0200 Subject: [PATCH] Question marks in series title facet links When series title include a question or exclamation mark, theese must be removed to prevent search failure. --- C4/Search.pm | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/C4/Search.pm b/C4/Search.pm index 7c20780..3a63fcd 100644 --- a/C4/Search.pm +++ b/C4/Search.pm @@ -532,9 +532,9 @@ sub getRecords { || ( $facets_info->{$link_value}->{'expanded'} ) ) { - # Sanitize the link value ), ( will cause errors with CCL, + # Sanitize the link value : parenthesis, question and exclamation mark will cause errors with CCL my $facet_link_value = $one_facet; - $facet_link_value =~ s/(\(|\))/ /g; + $facet_link_value =~ s/[()!?¡¿؟]/ /g; # fix the length that will display in the label, my $facet_label_value = $one_facet; -- 1.7.2.5