Browse Source

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 <gmcharlt@gmail.com>
3.2.x
Garry Collum 15 years ago
committed by Galen Charlton
parent
commit
1ab0497f7e
  1. 2
      opac/opac-serial-issues.pl
  2. 3
      opac/opac-showmarc.pl

2
opac/opac-serial-issues.pl

@ -19,6 +19,8 @@
use strict;
use warnings;
use CGI;
use C4::Auth;
use C4::Koha;

3
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",

Loading…
Cancel
Save