mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-01-26 06:38:36 +00:00
Fixing bug #46897
This commit is contained in:
parent
0ddb1344a0
commit
51a12fa0af
@ -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'}) )
|
||||
|
Loading…
x
Reference in New Issue
Block a user