Bug 30214: (QA follow-up) Clarify code comment
[srvgit] / opac / opac-alert-subscribe.pl
index e8809e4..c35b341 100755 (executable)
 # along with Koha; if not, see <http://www.gnu.org/licenses>.
 
 
-use strict;
-use warnings;
-
+use Modern::Perl;
 use CGI qw ( -utf8 );
-use C4::Auth;
-use C4::Output;
+use C4::Auth qw( get_template_and_user );
+use C4::Output qw( output_html_with_http_headers );
 use C4::Context;
-use C4::Koha;
-use C4::Letters;
-use C4::Serials;
+use C4::Serials qw( GetSubscription );
 
 
-my $query = new CGI;
+my $query = CGI->new;
 my $op    = $query->param('op') || '';
 my $dbh   = C4::Context->dbh;
 
-my $sth;
 my ( $template, $loggedinuser, $cookie );
 my $subscriptionid = $query->param('subscriptionid');
 my $referer      = $query->param('referer') || 'detail';
@@ -47,7 +42,6 @@ my $biblionumber = $query->param('biblionumber');
         type            => "opac",
         authnotrequired => 0, # user must logged in to request
                               # subscription notifications
-        debug           => 1,
     }
 );
 
@@ -92,4 +86,4 @@ else {
         biblionumber   => $biblionumber,
     );
 }
-output_html_with_http_headers $query, $cookie, $template->output;
+output_html_with_http_headers $query, $cookie, $template->output, undef, { force_no_caching => 1 };