From 5c210eb75a7e1b132fe335e1fefbff92a06bb6ca Mon Sep 17 00:00:00 2001 From: "mkanat%bugzilla.org" <> Date: Fri, 17 Apr 2009 21:53:49 +0000 Subject: [PATCH] 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 47699e4324..bf833846b1 100644 --- a/Bugzilla/Install/Requirements.pm +++ b/Bugzilla/Install/Requirements.pm @@ -94,6 +94,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 0d3552c1b4..f1981acf18 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'] %] -- 2.47.2