diff options
author | Frédéric Buclin <LpSolit@gmail.com> | 2015-06-20 00:53:58 +0200 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2015-06-20 00:53:58 +0200 |
commit | cd9c69156ce84ee65b0c7cf46ff027e52d2c4a62 (patch) | |
tree | e0bbc14d0bcf38093a747ff222ea2897b45988d2 | |
parent | Bump version post-release (diff) | |
download | bugzilla-cd9c69156ce84ee65b0c7cf46ff027e52d2c4a62.tar.gz bugzilla-cd9c69156ce84ee65b0c7cf46ff027e52d2c4a62.tar.bz2 bugzilla-cd9c69156ce84ee65b0c7cf46ff027e52d2c4a62.zip |
Bug 1175211: CGI 4.14 no longer exports SERVER_PUSH(), making buglist.cgi to crash with Gecko-based browsers
r=dkl a=glob
-rw-r--r-- | Bugzilla/CGI.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/CGI.pm b/Bugzilla/CGI.pm index 221bd165f..7f81e2b43 100644 --- a/Bugzilla/CGI.pm +++ b/Bugzilla/CGI.pm @@ -241,7 +241,7 @@ sub multipart_init { delete $param{'-boundary'}; $self->{'separator'} = "\r\n--$boundary\r\n"; $self->{'final_separator'} = "\r\n--$boundary--\r\n"; - $param{'-type'} = SERVER_PUSH($boundary); + $param{'-type'} = CGI::SERVER_PUSH($boundary); # Note: CGI.pm::multipart_init up to v3.04 explicitly set nph to 0 # CGI.pm::multipart_init v3.05 explicitly sets nph to 1 |