From 9e4b32e70bbf7aabf80333b9af8ff3161583493f Mon Sep 17 00:00:00 2001 From: Garry Collum Date: Sun, 9 Aug 2009 13:47:14 -0400 Subject: [PATCH] Bug 2505: Enabled warnings in opac-serial-issues.pl and opac-showmarc.pl Enabled warnings and also fixed resulting 'unintialized value' warning in opac-showmarc.pl. Signed-off-by: Galen Charlton Signed-off-by: Henri-Damien LAURENT --- opac/opac-serial-issues.pl | 2 ++ opac/opac-showmarc.pl | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/opac/opac-serial-issues.pl b/opac/opac-serial-issues.pl index 4935e29497..8993d7f4e9 100755 --- a/opac/opac-serial-issues.pl +++ b/opac/opac-serial-issues.pl @@ -19,6 +19,8 @@ use strict; +use warnings; + use CGI; use C4::Auth; use C4::Koha; diff --git a/opac/opac-showmarc.pl b/opac/opac-showmarc.pl index b38d77e7be..2024bcb809 100755 --- a/opac/opac-showmarc.pl +++ b/opac/opac-showmarc.pl @@ -25,6 +25,7 @@ # Suite 330, Boston, MA 02111-1307 USA use strict; +use warnings; # standard or CPAN modules used use CGI; @@ -41,7 +42,7 @@ use XML::LibXML; my $input = new CGI; my $biblionumber = $input->param('id'); my $importid = $input->param('importid'); -my $view = $input->param('viewas'); +my $view = $input->param('viewas') || 'marc'; my ( $template, $loggedinuser, $cookie ) = get_template_and_user({ template_name => "opac-showmarc.tmpl", -- 2.20.1