diff options
Diffstat (limited to 'em-format/e-mail-formatter-quote-attachment.c')
-rw-r--r-- | em-format/e-mail-formatter-quote-attachment.c | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/em-format/e-mail-formatter-quote-attachment.c b/em-format/e-mail-formatter-quote-attachment.c index 0ec4889b5b..dcc5300e45 100644 --- a/em-format/e-mail-formatter-quote-attachment.c +++ b/em-format/e-mail-formatter-quote-attachment.c @@ -96,10 +96,7 @@ emfqe_attachment_format (EMailFormatterExtension *extension, g_free (html); g_free (text); - string = - "<!--+GtkHTML:<DATA class=\"ClueFlow\" " - "key=\"orig\" value=\"1\">-->\n" - "<blockquote type=cite>\n"; + string = "<blockquote type=cite>\n"; g_output_stream_write_all ( stream, string, strlen (string), NULL, cancellable, NULL); @@ -107,9 +104,7 @@ emfqe_attachment_format (EMailFormatterExtension *extension, formatter, context, attachment_view_part, stream, NULL, cancellable); - string = - "</blockquote><!--+GtkHTML:" - "<DATA class=\"ClueFlow\" clear=\"orig\">-->"; + string = "</blockquote>"; g_output_stream_write_all ( stream, string, strlen (string), NULL, cancellable, NULL); |