summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Install/Requirements.pm
diff options
context:
space:
mode:
authormkanat%bugzilla.org <>2009-09-11 18:56:00 +0200
committermkanat%bugzilla.org <>2009-09-11 18:56:00 +0200
commit1eeabed432ff92b580d8f8417a24abac16436734 (patch)
tree089f089fd24a410ac55334a10e780f216d215c11 /Bugzilla/Install/Requirements.pm
parent7380ea9ae11764633a4b6e64850da2d84b2aaeb2 (diff)
downloadbugzilla-1eeabed432ff92b580d8f8417a24abac16436734.tar.gz
bugzilla-1eeabed432ff92b580d8f8417a24abac16436734.tar.xz
Bug 515991: Blacklist CGI 3.46 and 3.47 because CGI::Carp breaks Template Toolkit in those versions.
Patch by Max Kanat-Alexander <mkanat@bugzilla.org> r=LpSolit, a=LpSolit
Diffstat (limited to 'Bugzilla/Install/Requirements.pm')
-rw-r--r--Bugzilla/Install/Requirements.pm4
1 files changed, 3 insertions, 1 deletions
diff --git a/Bugzilla/Install/Requirements.pm b/Bugzilla/Install/Requirements.pm
index a957ceb10..70974a373 100644
--- a/Bugzilla/Install/Requirements.pm
+++ b/Bugzilla/Install/Requirements.pm
@@ -66,7 +66,9 @@ sub REQUIRED_MODULES {
# 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'
+ 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$'],
},
{
package => 'Digest-SHA',