Commit c9699656 authored by tara%tequilarista.org's avatar tara%tequilarista.org

Fixing bug #46897

parent d09cfd76
......@@ -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!
}
......
......@@ -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();
......
......@@ -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'}) )
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment