diff options
-rw-r--r-- | mail/ChangeLog | 7 | ||||
-rw-r--r-- | mail/em-format-quote.c | 6 |
2 files changed, 9 insertions, 4 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index ed1bf8f535..d3da82cd77 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,10 @@ +2008-02-19 Milan Crha <mcrha@redhat.com> + + ** Fix for bug #516349 + + * em-format-quote.c: (emfq_format_message): + Do not force black text in quotation part of the message. + 2008-02-18 Milan Crha <mcrha@redhat.com> ** Part of fix for bug #515744 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 |