aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--mail/ChangeLog5
-rw-r--r--mail/mail-format.c11
2 files changed, 11 insertions, 5 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog
index 03427d8d12..4209fa7b32 100644
--- a/mail/ChangeLog
+++ b/mail/ChangeLog
@@ -1,3 +1,8 @@
+2001-10-08 Jeffrey Stedfast <fejj@ximian.com>
+
+ * mail-format.c (attachment_header): Convert the htmlinfo into
+ utf8. Fixes bug #11966.
+
2001-10-08 Dan Winship <danw@frotz.mysterion.org>
* component-factory.c (create_view): For mailstorage folders,
diff --git a/mail/mail-format.c b/mail/mail-format.c
index 5a8192f38c..f3b364fde2 100644
--- a/mail/mail-format.c
+++ b/mail/mail-format.c
@@ -608,9 +608,8 @@ mail_part_toggle_displayed (CamelMimePart *part, MailDisplay *md)
static void
attachment_header (CamelMimePart *part, const char *mime_type, MailDisplay *md)
{
+ char *htmlinfo, *html, *fmt;
const char *info;
- char *htmlinfo;
- char *fmt;
/* Start the table, create the pop-up object. */
mail_html_write (md->html, md->stream,
@@ -623,12 +622,14 @@ attachment_header (CamelMimePart *part, const char *mime_type, MailDisplay *md)
/* Write the MIME type */
info = gnome_vfs_mime_get_value (mime_type, "description");
- htmlinfo = e_text_to_html (info ? info : mime_type, 0);
+ html = e_text_to_html (info ? info : mime_type, 0);
+ htmlinfo = e_utf8_from_locale_string (html);
+ g_free (html);
fmt = e_utf8_from_locale_string (_("%s attachment"));
mail_html_write (md->html, md->stream, fmt, htmlinfo);
- g_free (fmt);
g_free (htmlinfo);
-
+ g_free (fmt);
+
/* Write the name, if we have it. */
info = camel_mime_part_get_filename (part);
if (info) {