From 5051167cfcb76b191b890dddc943f1beab620416 Mon Sep 17 00:00:00 2001 From: Lyon3 Team Date: Mon, 8 Oct 2012 10:23:21 +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..77d2601 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