From: tara%tequilarista.org <> Date: Tue, 8 Aug 2000 05:59:54 +0000 (+0000) Subject: Fixing bug #46897 X-Git-Tag: bugzilla-2.12~212 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c969965646f177874b12697883322715694917d4;p=thirdparty%2Fbugzilla.git Fixing bug #46897 --- diff --git a/buglist.cgi b/buglist.cgi index b9c6c4f343..c59a4d82aa 100755 --- a/buglist.cgi +++ b/buglist.cgi @@ -764,7 +764,9 @@ if (exists $ENV{'HTTP_USER_AGENT'} && $ENV{'HTTP_USER_AGENT'} =~ /Mozilla.[3-9]/ # Note! HTML header is complete! } else { print "Content-type: text/html\n"; - print "Content-disposition: attachment; filename=bugzilla_bug_list.html\n"; + #Changing attachment to inline to resolve 46897 + #zach@zachlipton.com + print "Content-disposition: inline; filename=bugzilla_bug_list.html\n"; # Note! Don't finish HTML header yet! Only one newline so far! } diff --git a/long_list.cgi b/long_list.cgi index c2be914e26..5623a4e124 100755 --- a/long_list.cgi +++ b/long_list.cgi @@ -37,7 +37,9 @@ sub sillyness { } print "Content-type: text/html\n"; -print "Content-disposition: attachement; filename=bugzilla_bug_list.html\n\n"; +#Changing attachment to inline to resolve 46897 +#zach@zachlipton.com +print "Content-disposition: inline; filename=bugzilla_bug_list.html\n\n"; PutHeader ("Full Text Bug Listing"); ConnectToDatabase(); diff --git a/reports.cgi b/reports.cgi index b4102a9f7e..dd081ad128 100755 --- a/reports.cgi +++ b/reports.cgi @@ -60,7 +60,9 @@ my %reports = quietly_check_login(); print "Content-type: text/html\n"; -print "Content-disposition: attachment; filename=bugzilla_report.html\n\n"; + #Changing attachment to inline to resolve 46897 + #zach@zachlipton.com +print "Content-disposition: inline; 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'}) )