From ca3d7be2cc1d32d9cfa5a16251415d8b9e65d570 Mon Sep 17 00:00:00 2001 From: "wurblzap%gmail.com" Date: Sat, 12 Apr 2008 06:18:33 +0000 Subject: [PATCH] =?UTF-8?q?Bug=20428569=20=C3=A2=C2=80=C2=93=20The=20CGI?= =?UTF-8?q?=20module's=20package=20name=20is=20CGI.pm.=20Patch=20by=20Marc?= =?UTF-8?q?=20Schumann=20;=20r/a=3DLpSolit?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: svn://10.0.0.236/trunk@250111 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/webtools/bugzilla/Bugzilla/Install/Requirements.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mozilla/webtools/bugzilla/Bugzilla/Install/Requirements.pm b/mozilla/webtools/bugzilla/Bugzilla/Install/Requirements.pm index b8695c82415..1ea2094b048 100644 --- a/mozilla/webtools/bugzilla/Bugzilla/Install/Requirements.pm +++ b/mozilla/webtools/bugzilla/Bugzilla/Install/Requirements.pm @@ -57,7 +57,7 @@ sub REQUIRED_MODULES { my $perl_ver = sprintf('%vd', $^V); my @modules = ( { - package => 'CGI', + package => 'CGI.pm', module => 'CGI', # Perl 5.10 requires CGI 3.33 due to a taint issue when # uploading attachments, see bug 416382. @@ -238,7 +238,7 @@ sub OPTIONAL_MODULES { # check is only relevant with Perl 5.8.x. my $perl_ver = sprintf('%vd', $^V); if (vers_cmp($perl_ver, '5.10') < 0) { - push(@modules, { package => 'CGI', + push(@modules, { package => 'CGI.pm', module => 'CGI', version => '3.11', feature => 'mod_perl' });