showattachment.cgi: remove CGI usage, code style

hinted-selects
Vitaliy Filippov 2014-10-08 16:41:03 +04:00
parent a06dcd0192
commit c66dac87f1
1 changed files with 5 additions and 8 deletions

View File

@ -1,6 +1,4 @@
#!/usr/bin/perl -wT #!/usr/bin/perl -wT
# -*- Mode: perl; indent-tabs-mode: nil -*-
#
# The contents of this file are subject to the Mozilla Public # The contents of this file are subject to the Mozilla Public
# License Version 1.1 (the "License"); you may not use this file # License Version 1.1 (the "License"); you may not use this file
# except in compliance with the License. You may obtain a copy of # except in compliance with the License. You may obtain a copy of
@ -28,13 +26,12 @@ use lib qw(. lib);
use Bugzilla; use Bugzilla;
use Bugzilla::Util; use Bugzilla::Util;
my $cgi = Bugzilla->cgi; my $id = Bugzilla->input_params->{attach_id};
my $id = $cgi->param('attach_id');
detaint_natural($id) if defined $id; detaint_natural($id) if defined $id;
$id ||= ""; $id ||= "";
print $cgi->redirect(-location=>"attachment.cgi?id=$id", print Bugzilla->cgi->redirect(
-status=>'301 Permanent Redirect'); -location => "attachment.cgi?id=$id",
-status => '301 Permanent Redirect',
);
exit; exit;