bug 2505: enable warnings for admin/authorized_values.pl
authorGalen Charlton <galen.charlton@liblime.com>
Wed, 7 Jan 2009 01:43:35 +0000 (19:43 -0600)
committerHenri-Damien LAURENT <henridamien@koha-fr.org>
Tue, 27 Jan 2009 11:19:44 +0000 (12:19 +0100)
Signed-off-by: Galen Charlton <galen.charlton@liblime.com>
admin/authorised_values.pl

index eeff97a..f30193e 100755 (executable)
@@ -18,7 +18,8 @@
 # Suite 330, Boston, MA  02111-1307 USA
 
 use strict;
-# use warnings; #FIXME
+use warnings;
+
 use CGI;
 use C4::Auth;
 use C4::Context;
@@ -43,22 +44,23 @@ sub AuthorizedValuesForCategory ($) {
 
 my $input = new CGI;
 my $id          = $input->param('id');
-my $offset      = $input->param('offset');
+my $offset      = $input->param('offset') || 0;
 my $searchfield = $input->param('searchfield');
+$searchfield = '' unless defined $searchfield;
 $searchfield=~ s/\,//g;
 my $script_name = "/cgi-bin/koha/admin/authorised_values.pl";
 my $dbh = C4::Context->dbh;
 
 my ($template, $borrowernumber, $cookie)= get_template_and_user({
-      template_name => "admin/authorised_values.tmpl",
+    template_name => "admin/authorised_values.tmpl",
     authnotrequired => 0,
-      flagsrequired => {parameters => 1},
+    flagsrequired => {parameters => 1},
     query => $input,
-     type => "intranet",
+    type => "intranet",
     debug => 1,
 });
 my $pagesize = 20;
-my $op = $input->param('op');
+my $op = $input->param('op') || '';
 
 $template->param(  script_name => $script_name,
                  ($op||'else') => 1 );