diff options
Diffstat (limited to 'mail/em-format-quote.c')
-rw-r--r-- | mail/em-format-quote.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/mail/em-format-quote.c b/mail/em-format-quote.c index 69626b951a..f14a2dc091 100644 --- a/mail/em-format-quote.c +++ b/mail/em-format-quote.c @@ -391,9 +391,7 @@ emfq_format_message(EMFormat *emf, CamelStream *stream, CamelMimePart *part, con if (emfq->flags & EM_FORMAT_QUOTE_CITE) camel_stream_printf(stream, "<!--+GtkHTML:<DATA class=\"ClueFlow\" key=\"orig\" value=\"1\">-->\n" - "<blockquote type=cite>\n" - "<font color=\"#%06x\">\n", - emfq->citation_colour & 0xffffff); + "<blockquote type=cite>\n"); if (((CamelMimePart *)emf->message) != part) { camel_stream_printf(stream, "%s</br>\n", _("-------- Forwarded Message --------")); @@ -404,7 +402,7 @@ emfq_format_message(EMFormat *emf, CamelStream *stream, CamelMimePart *part, con em_format_part (emf, stream, part); if (emfq->flags & EM_FORMAT_QUOTE_CITE) - camel_stream_write_string(stream, "</blockquote></font><!--+GtkHTML:<DATA class=\"ClueFlow\" clear=\"orig\">-->"); + camel_stream_write_string(stream, "</blockquote><!--+GtkHTML:<DATA class=\"ClueFlow\" clear=\"orig\">-->"); } static void |