summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMax Kanat-Alexander <mkanat@bugzilla.org>2010-06-24 02:35:57 +0200
committerMax Kanat-Alexander <mkanat@bugzilla.org>2010-06-24 02:35:57 +0200
commit0a4878ccff5b9c281b018ad6c13fa5ac40986708 (patch)
treea0c3f18e2be34f98bb788cdd42f65586caecf998
parentfeef94f798c07a1d8fde3ed8a06e04b6e68f393b (diff)
downloadbugzilla-0a4878ccff5b9c281b018ad6c13fa5ac40986708.tar.gz
bugzilla-0a4878ccff5b9c281b018ad6c13fa5ac40986708.tar.xz
Bug 509303: Update the CGI.pm requirement to 3.49 to make redirection
work properly when Bugzilla is behind a proxy. r=LpSolit, a=LpSolit
-rw-r--r--Bugzilla/Install/Requirements.pm9
1 files changed, 3 insertions, 6 deletions
diff --git a/Bugzilla/Install/Requirements.pm b/Bugzilla/Install/Requirements.pm
index 1be7d759d..badf63c40 100644
--- a/Bugzilla/Install/Requirements.pm
+++ b/Bugzilla/Install/Requirements.pm
@@ -66,12 +66,9 @@ sub REQUIRED_MODULES {
{
package => 'CGI.pm',
module => 'CGI',
- # Perl 5.10 requires CGI 3.33 due to a taint issue when
- # uploading attachments, see bug 416382.
- # Require CGI 3.21 for -httponly support, see bug 368502.
- version => (vers_cmp($perl_ver, '5.10') > -1) ? '3.33' : '3.21',
- # CGI::Carp in 3.46 and 3.47 breaks Template Toolkit
- blacklist => ['^3\.46$', '^3\.47$'],
+ # 3.49 fixes a problem with operating Bugzilla behind a proxy.
+ # (bug 509303)
+ version => '3.49',
},
{
package => 'Digest-SHA',