Bug 17600: Standardize our EXPORT_OK
[srvgit] / opac / opac-serial-issues.pl
index 88f8664..b84b176 100755 (executable)
 use Modern::Perl;
 
 use CGI qw ( -utf8 );
-use C4::Auth;
-use C4::Koha;
-use C4::Serials;
-use C4::Letters;
-use C4::Output;
+use C4::Auth qw( get_template_and_user );
+use C4::Serials qw( GetFullSubscription GetFullSubscriptionsFromBiblionumber PrepareSerialsData GetSubscription GetSubscriptionsFromBiblionumber );
+use C4::Output qw( output_html_with_http_headers );
 use C4::Context;
 
-my $query      = new CGI;
+my $query      = CGI->new;
 my $op         = $query->param('op');
 my $dbh        = C4::Context->dbh;
 my $selectview = $query->param('selectview');
 $selectview = C4::Context->preference("SubscriptionHistory") unless $selectview;
 
-my $sth;
-
 # my $id;
 my ( $template, $loggedinuser, $cookie );
 my $biblionumber = $query->param('biblionumber');
@@ -46,7 +42,6 @@ if ( $selectview eq "full" ) {
             query           => $query,
             type            => "opac",
             authnotrequired => 1,
-            debug           => 1,
         }
     );
     my $subscriptions = GetFullSubscriptionsFromBiblionumber($biblionumber);
@@ -89,7 +84,6 @@ else {
             query           => $query,
             type            => "opac",
             authnotrequired => 1,
-            debug           => 1,
         }
     );