]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 509303: Update the CGI.pm requirement to 3.49 to make redirection
authorMax Kanat-Alexander <mkanat@bugzilla.org>
Thu, 24 Jun 2010 00:35:57 +0000 (17:35 -0700)
committerMax Kanat-Alexander <mkanat@bugzilla.org>
Thu, 24 Jun 2010 00:35:57 +0000 (17:35 -0700)
work properly when Bugzilla is behind a proxy.
r=LpSolit, a=LpSolit

Bugzilla/Install/Requirements.pm

index 1be7d759d1a195c40ce0410f5d7649516f864609..badf63c40b0ab94ffa8b4ecaeda6cf04185baef9 100644 (file)
@@ -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',