diff options
author | dave%intrec.com <> | 2000-07-19 23:05:51 +0000 |
---|---|---|
committer | dave%intrec.com <> | 2000-07-19 23:05:51 +0000 |
commit | 16488acd8d39621ac14022063310f1164e4e0ee7 (patch) | |
tree | a28069e1893d3edf17f09b2b4b7e20d0835c02c9 /reports.cgi | |
parent | 9154c59e5079c1943cb51df83a34c390240572e9 (diff) | |
download | bugs-16488acd8d39621ac14022063310f1164e4e0ee7.tar bugs-16488acd8d39621ac14022063310f1164e4e0ee7.tar.gz bugs-16488acd8d39621ac14022063310f1164e4e0ee7.tar.bz2 bugs-16488acd8d39621ac14022063310f1164e4e0ee7.tar.xz bugs-16488acd8d39621ac14022063310f1164e4e0ee7.zip |
Fix for bug 27248 (Bug listings saved with .html extension). Patch
submitted by mhamby@logicon.com (Mark Hamby).
Diffstat (limited to 'reports.cgi')
-rwxr-xr-x | reports.cgi | 3 |
1 files changed, 2 insertions, 1 deletions
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'}) ) |