Bug 29394: adjust request.tt
[koha-ffzg.git] / opac / opac-serial-issues.pl
index 74e5abb..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      = CGI->new;
@@ -44,7 +42,6 @@ if ( $selectview eq "full" ) {
             query           => $query,
             type            => "opac",
             authnotrequired => 1,
-            debug           => 1,
         }
     );
     my $subscriptions = GetFullSubscriptionsFromBiblionumber($biblionumber);
@@ -87,7 +84,6 @@ else {
             query           => $query,
             type            => "opac",
             authnotrequired => 1,
-            debug           => 1,
         }
     );