Commit 37bbf30f authored by Frédéric Buclin's avatar Frédéric Buclin

The utf8 parameter no longer exists, see bug 1105568

parent d8cbd5b5
...@@ -80,7 +80,7 @@ sub generate_email { ...@@ -80,7 +80,7 @@ sub generate_email {
} else { } else {
$email->content_type_set('multipart/alternative'); $email->content_type_set('multipart/alternative');
# Some mail clients need same encoding for each part, even empty ones. # 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); $email->parts_set(\@parts);
return $email; return $email;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment