Revert "Bug 9951: Followup for Tools"

This reverts commit 252568aa8b.

Rolling back bug 6554 work until we have more comprehensive tests.
This commit is contained in:
Galen Charlton 2013-04-29 15:04:38 -07:00
parent 5948badf43
commit 11b62318f4
2 changed files with 1 additions and 2 deletions

View file

@ -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;

View file

@ -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);