From 16488acd8d39621ac14022063310f1164e4e0ee7 Mon Sep 17 00:00:00 2001 From: "dave%intrec.com" <> Date: Wed, 19 Jul 2000 23:05:51 +0000 Subject: Fix for bug 27248 (Bug listings saved with .html extension). Patch submitted by mhamby@logicon.com (Mark Hamby). --- reports.cgi | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'reports.cgi') diff --git a/reports.cgi b/reports.cgi index 8737583ab..4235b343c 100755 --- a/reports.cgi +++ b/reports.cgi @@ -52,7 +52,8 @@ my %reports = "show_chart" => \&show_chart, ); -print "Content-type: text/html\n\n"; +print "Content-type: text/html\n"; +print "Content-disposition: attachment; filename=bugzilla_report.html\n\n"; # If we're here for the first time, give a banner. Else respect the banner flag. if ( (!defined $::FORM{'product'}) || ($::FORM{'banner'}) ) -- cgit v1.2.3-24-g4f1b