From: Frédéric Buclin Date: Sat, 23 May 2015 21:46:42 +0000 (+0200) Subject: The utf8 parameter no longer exists, see bug 1105568 X-Git-Tag: release-5.1.1~243 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=37bbf30f4d7f630d960da4ba37e0bd5f8699e26b;p=thirdparty%2Fbugzilla.git The utf8 parameter no longer exists, see bug 1105568 --- diff --git a/Bugzilla/Mailer.pm b/Bugzilla/Mailer.pm index 8221a34a4a..1931a2ff9c 100644 --- a/Bugzilla/Mailer.pm +++ b/Bugzilla/Mailer.pm @@ -80,7 +80,7 @@ sub generate_email { } else { $email->content_type_set('multipart/alternative'); # Some mail clients need same encoding for each part, even empty ones. - $email->charset_set('UTF-8') if Bugzilla->params->{'utf8'}; + $email->charset_set('UTF-8'); } $email->parts_set(\@parts); return $email;