summaryrefslogtreecommitdiffstats
path: root/Bugzilla
diff options
context:
space:
mode:
authorFrédéric Buclin <LpSolit@gmail.com>2015-05-23 23:46:42 +0200
committerFrédéric Buclin <LpSolit@gmail.com>2015-05-23 23:46:42 +0200
commit37bbf30f4d7f630d960da4ba37e0bd5f8699e26b (patch)
tree6a80d6164684623ea205dd4949c5cb621275c318 /Bugzilla
parentd8cbd5b5c59f0c66772df100a4b28d4e26450771 (diff)
downloadbugzilla-37bbf30f4d7f630d960da4ba37e0bd5f8699e26b.tar.gz
bugzilla-37bbf30f4d7f630d960da4ba37e0bd5f8699e26b.tar.xz
The utf8 parameter no longer exists, see bug 1105568
Diffstat (limited to 'Bugzilla')
-rw-r--r--Bugzilla/Mailer.pm2
1 files changed, 1 insertions, 1 deletions
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;