This commit is contained in:
tara%tequilarista.org 2000-08-07 22:59:55 +00:00
parent 0ddb1344a0
commit 51a12fa0af
3 changed files with 9 additions and 3 deletions

View File

@ -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!
}

View File

@ -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();

View File

@ -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'}) )