From 40ac6b4b2c104227b54a81d44cf37cca0d6041c7 Mon Sep 17 00:00:00 2001 From: "wurblzap%gmail.com" <> Date: Sat, 12 Apr 2008 11:18:33 +0000 Subject: [PATCH] =?utf8?q?Bug=20428569=20=C3=A2=C2=80=C2=93=20The=20CGI=20?= =?utf8?q?module's=20package=20name=20is=20CGI.pm.=20Patch=20by=20Marc=20S?= =?utf8?q?chumann=20;=20r/a=3DLpSolit?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- Bugzilla/Install/Requirements.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Bugzilla/Install/Requirements.pm b/Bugzilla/Install/Requirements.pm index 5d4b777098..e9670d2baf 100644 --- a/Bugzilla/Install/Requirements.pm +++ b/Bugzilla/Install/Requirements.pm @@ -59,7 +59,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. @@ -224,7 +224,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' }); -- 2.47.2