From 37bbf30f4d7f630d960da4ba37e0bd5f8699e26b Mon Sep 17 00:00:00 2001 From: Frédéric Buclin Date: Sat, 23 May 2015 23:46:42 +0200 Subject: The utf8 parameter no longer exists, see bug 1105568 --- Bugzilla/Mailer.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Bugzilla/Mailer.pm') diff --git a/Bugzilla/Mailer.pm b/Bugzilla/Mailer.pm index 8221a34a4..1931a2ff9 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; -- cgit v1.2.3-24-g4f1b