Revert "Bug 6554: Followup for serial search"
authorGalen Charlton <gmc@esilibrary.com>
Mon, 29 Apr 2013 22:17:18 +0000 (15:17 -0700)
committerGalen Charlton <gmc@esilibrary.com>
Mon, 29 Apr 2013 22:17:18 +0000 (15:17 -0700)
This reverts commit c18cd930eb3d15e20c642b2788116cc2abb30538.

Rolling back bug 6554 work until we have more comprehensive tests.

serials/serials-search.pl

index de26736..bc84ed6 100755 (executable)
@@ -38,13 +38,10 @@ 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");