Revert "Bug 9951: Followup for Tools"
authorGalen Charlton <gmc@esilibrary.com>
Mon, 29 Apr 2013 22:04:38 +0000 (15:04 -0700)
committerGalen Charlton <gmc@esilibrary.com>
Mon, 29 Apr 2013 22:04:38 +0000 (15:04 -0700)
This reverts commit 252568aa8babdcc9508d3b3c7626543bfa648d99.

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

patroncards/members-search.pl
tags/review.pl

index 8ab249b..ef7a776 100755 (executable)
@@ -34,7 +34,6 @@ my $startfrom = $cgi->param('startfrom')||1;
 my $resultsperpage = $cgi->param('resultsperpage')||C4::Context->preference("PatronsPerPage")||20;
 my $category = $cgi->param('category') || undef;
 my $member = $cgi->param('member') || '';
-utf8::decode($member);
 my $orderby = $cgi->param('orderby') || undef;
 
 my @categories=C4::Category->all;
index 5405924..3b7a0a0 100755 (executable)
@@ -23,7 +23,7 @@ use warnings;
 use strict;
 use Data::Dumper;
 use POSIX;
-use CGI qw/-utf8/;
+use CGI;
 use CGI::Cookie; # need to check cookies before having CGI parse the POST request
 
 use C4::Auth qw(:DEFAULT check_cookie_auth);