From 3b1bc81a53d7988a2bd22ad311f77baafc807eca Mon Sep 17 00:00:00 2001 From: "mkanat%bugzilla.org" <> Date: Fri, 17 Apr 2009 21:52:40 +0000 Subject: Bug 486206: Quoted-printable bugmail had a =0D at the end of every line, because of a bug in Email::MIME::Encodings Patch by Max Kanat-Alexander r=LpSolit, a=LpSolit --- Bugzilla/Install/Requirements.pm | 6 ++++++ template/en/default/pages/release-notes.html.tmpl | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/Bugzilla/Install/Requirements.pm b/Bugzilla/Install/Requirements.pm index dba588c8a..35f329b18 100644 --- a/Bugzilla/Install/Requirements.pm +++ b/Bugzilla/Install/Requirements.pm @@ -117,6 +117,12 @@ sub REQUIRED_MODULES { module => 'Email::MIME', version => '1.861' }, + { + package => 'Email-MIME-Encodings', + module => 'Email::MIME::Encodings', + # Fixes bug 486206 + version => '1.313', + }, { package => 'Email-MIME-Modifier', module => 'Email::MIME::Modifier', diff --git a/template/en/default/pages/release-notes.html.tmpl b/template/en/default/pages/release-notes.html.tmpl index 9f617a817..3353ab45d 100644 --- a/template/en/default/pages/release-notes.html.tmpl +++ b/template/en/default/pages/release-notes.html.tmpl @@ -181,7 +181,7 @@

Required Perl Modules

[% INCLUDE req_table reqs = REQUIRED_MODULES - new = [] + new = ['Email-MIME-Encodings'] updated = ['Template-Toolkit', 'Email-MIME', 'Email-MIME-Modifier', 'CGI.pm'] %] -- cgit v1.2.3-24-g4f1b