2003-03-27 00:07:02 +00:00
|
|
|
#!/usr/bin/perl -wT
|
1999-04-08 14:40:46 +00:00
|
|
|
# -*- Mode: perl; indent-tabs-mode: nil -*-
|
|
|
|
#
|
1999-11-01 23:33:56 +00:00
|
|
|
# The contents of this file are subject to the Mozilla Public
|
|
|
|
# License Version 1.1 (the "License"); you may not use this file
|
|
|
|
# except in compliance with the License. You may obtain a copy of
|
|
|
|
# the License at http://www.mozilla.org/MPL/
|
|
|
|
#
|
|
|
|
# Software distributed under the License is distributed on an "AS
|
|
|
|
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
|
|
|
# implied. See the License for the specific language governing
|
|
|
|
# rights and limitations under the License.
|
|
|
|
#
|
1999-04-08 14:40:46 +00:00
|
|
|
# The Original Code is the Bugzilla Bug Tracking System.
|
1999-11-01 23:33:56 +00:00
|
|
|
#
|
1999-04-08 14:40:46 +00:00
|
|
|
# The Initial Developer of the Original Code is Netscape Communications
|
1999-11-01 23:33:56 +00:00
|
|
|
# Corporation. Portions created by Netscape are
|
|
|
|
# Copyright (C) 1998 Netscape Communications Corporation. All
|
|
|
|
# Rights Reserved.
|
|
|
|
#
|
1999-04-08 14:40:46 +00:00
|
|
|
# Contributor(s): Terry Weissman <terry@mozilla.org>
|
2002-08-27 04:28:05 +00:00
|
|
|
# Jacob Steenhagen <jake@bugzilla.org>
|
1999-04-08 14:40:46 +00:00
|
|
|
|
|
|
|
use strict;
|
|
|
|
|
2002-01-20 01:44:52 +00:00
|
|
|
use lib qw(.);
|
|
|
|
|
2003-05-05 01:15:38 +00:00
|
|
|
use Bugzilla;
|
|
|
|
use Bugzilla::Util;
|
|
|
|
|
|
|
|
my $cgi = Bugzilla->cgi;
|
|
|
|
|
|
|
|
my $id = $cgi->param('attach_id');
|
|
|
|
detaint_natural($id) if defined $id;
|
|
|
|
$id ||= "";
|
|
|
|
|
|
|
|
print $cgi->redirect(-location=>"attachment.cgi?id=$id&action=view",
|
|
|
|
-status=>'301 Permanent Redirect');
|
1999-04-08 14:40:46 +00:00
|
|
|
|
2002-01-30 14:14:12 +00:00
|
|
|
exit;
|