aboutsummaryrefslogtreecommitdiffstats
path: root/mail/em-format-html.c
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@novell.com>2004-08-13 00:34:22 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2004-08-13 00:34:22 +0800
commit1d5b61d3d0231f70846b14330309e9cd7c827e97 (patch)
tree82a0b94725414f71a1393375307079461eab470c /mail/em-format-html.c
parentb58176fd489aaac131e27c9d091c4f6c8b228d49 (diff)
downloadgsoc2013-evolution-1d5b61d3d0231f70846b14330309e9cd7c827e97.tar
gsoc2013-evolution-1d5b61d3d0231f70846b14330309e9cd7c827e97.tar.gz
gsoc2013-evolution-1d5b61d3d0231f70846b14330309e9cd7c827e97.tar.bz2
gsoc2013-evolution-1d5b61d3d0231f70846b14330309e9cd7c827e97.tar.lz
gsoc2013-evolution-1d5b61d3d0231f70846b14330309e9cd7c827e97.tar.xz
gsoc2013-evolution-1d5b61d3d0231f70846b14330309e9cd7c827e97.tar.zst
gsoc2013-evolution-1d5b61d3d0231f70846b14330309e9cd7c827e97.zip
Partial fix for bug #62771
2004-08-10 Jeffrey Stedfast <fejj@novell.com> Partial fix for bug #62771 * em-format-quote.c (emfq_format_header): Same. * em-format-html.c (efh_format_header): Decode the X-Mailer/User-Agent headers. svn path=/trunk/; revision=26889
Diffstat (limited to 'mail/em-format-html.c')
-rw-r--r--mail/em-format-html.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/em-format-html.c b/mail/em-format-html.c
index d84238fda0..60baac02d5 100644
--- a/mail/em-format-html.c
+++ b/mail/em-format-html.c
@@ -1552,7 +1552,7 @@ efh_format_header(EMFormat *emf, CamelStream *stream, CamelMedium *part, struct
} else if (!strcmp(name, "x-evolution-mailer")) {
/* pseudo-header */
label = _("Mailer");
- txt = header->value;
+ txt = value = camel_header_format_ctext (header->value, charset);
flags |= EM_FORMAT_HEADER_BOLD;
} else if (!strcmp(name, "date") || !strcmp(name, "resent-date")) {
int msg_offset, local_tz;