From 795c7ef5cae9a55b74a0da05073e4177f1ac2b3a Mon Sep 17 00:00:00 2001 From: Marcel de Rooy Date: Thu, 28 Mar 2013 13:23:08 +0100 Subject: [PATCH] [SIGNED-OFF] Bug 6554: Followup for serial search Adds decoding for title, publisher and vendor. Test plan: Go to serials. Search for a diacritic in title. Check. Go to Advanced search (in Serials). Search for diacritic in title, vendor or publisher. Check. Signed-off-by: Bernardo Gonzalez Kriegel Works ok, no errors. --- serials/serials-search.pl | 3 +++ 1 file changed, 3 insertions(+) diff --git a/serials/serials-search.pl b/serials/serials-search.pl index bc84ed6..de26736 100755 --- a/serials/serials-search.pl +++ b/serials/serials-search.pl @@ -38,10 +38,13 @@ use C4::Serials; my $query = new CGI; my $title = $query->param('title_filter') || ''; +utf8::decode($title); my $ISSN = $query->param('ISSN_filter') || ''; my $EAN = $query->param('EAN_filter') || ''; my $publisher = $query->param('publisher_filter') || ''; +utf8::decode($publisher); my $bookseller = $query->param('bookseller_filter') || ''; +utf8::decode($bookseller); my $biblionumber = $query->param('biblionumber') || ''; my $branch = $query->param('branch_filter') || ''; my $routing = $query->param('routing') || C4::Context->preference("RoutingSerials"); -- 1.7.9.5