summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Install/Requirements.pm
diff options
context:
space:
mode:
authorreed%reedloden.com <>2008-08-23 06:38:55 +0200
committerreed%reedloden.com <>2008-08-23 06:38:55 +0200
commitd8b02aff4ed586f38a56caaafcb0374edc16d519 (patch)
treea605c395912f4ee79e299a7701fb62ffce82cca6 /Bugzilla/Install/Requirements.pm
parentd68db405497ae121a123843ff478c8c703523094 (diff)
downloadbugzilla-d8b02aff4ed586f38a56caaafcb0374edc16d519.tar.gz
bugzilla-d8b02aff4ed586f38a56caaafcb0374edc16d519.tar.xz
Bug 368502 - "Bugzilla_logincookie should not be accessible via javascript" [p=reed r+a=mkanat]
Diffstat (limited to 'Bugzilla/Install/Requirements.pm')
-rw-r--r--Bugzilla/Install/Requirements.pm3
1 files changed, 2 insertions, 1 deletions
diff --git a/Bugzilla/Install/Requirements.pm b/Bugzilla/Install/Requirements.pm
index fd3dcf589..2216d963d 100644
--- a/Bugzilla/Install/Requirements.pm
+++ b/Bugzilla/Install/Requirements.pm
@@ -61,7 +61,8 @@ sub REQUIRED_MODULES {
module => 'CGI',
# Perl 5.10 requires CGI 3.33 due to a taint issue when
# uploading attachments, see bug 416382.
- version => (vers_cmp($perl_ver, '5.10') > -1) ? '3.33' : '2.93'
+ # Require CGI 3.21 for -httponly support, see bug 368502.
+ version => (vers_cmp($perl_ver, '5.10') > -1) ? '3.33' : '3.21'
},
{
package => 'TimeDate',