diff options
author | gerv%gerv.net <> | 2008-06-25 22:40:19 +0200 |
---|---|---|
committer | gerv%gerv.net <> | 2008-06-25 22:40:19 +0200 |
commit | 6de90de1f2db0766633cc188bfe800b6980f4925 (patch) | |
tree | 2c65ecdaaa460d43113439e116e033cfa4885e29 /Bugzilla | |
parent | 4d9a13264e6ea5e6ba0fb6bcac93b7633814bed9 (diff) | |
download | bugzilla-6de90de1f2db0766633cc188bfe800b6980f4925.tar.gz bugzilla-6de90de1f2db0766633cc188bfe800b6980f4925.tar.xz |
Bug 441541 - Email::MIME->as_string gives SCALAR for body with mismatched Email:: modules. Patch by gerv; r,a=mkanat.
Diffstat (limited to 'Bugzilla')
-rw-r--r-- | Bugzilla/Install/Requirements.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Bugzilla/Install/Requirements.pm b/Bugzilla/Install/Requirements.pm index b8695c824..0f2472a5e 100644 --- a/Bugzilla/Install/Requirements.pm +++ b/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. @@ -96,7 +96,7 @@ sub REQUIRED_MODULES { { package => 'Email-MIME-Modifier', module => 'Email::MIME::Modifier', - version => 0 + version => '1.442' }, ); @@ -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' }); |