aboutsummaryrefslogtreecommitdiffstats
path: root/em-format
diff options
context:
space:
mode:
authorMilan Crha <mcrha@redhat.com>2012-09-11 23:41:37 +0800
committerMilan Crha <mcrha@redhat.com>2012-09-11 23:41:37 +0800
commitcf218fc8f52e8d4502979cf12995bcdb645d996c (patch)
tree62b825e88254e6050a8d2c2e5a37edc862a9fba3 /em-format
parent9998479b96de521f2b120153087202daa32c90ad (diff)
downloadgsoc2013-evolution-cf218fc8f52e8d4502979cf12995bcdb645d996c.tar
gsoc2013-evolution-cf218fc8f52e8d4502979cf12995bcdb645d996c.tar.gz
gsoc2013-evolution-cf218fc8f52e8d4502979cf12995bcdb645d996c.tar.bz2
gsoc2013-evolution-cf218fc8f52e8d4502979cf12995bcdb645d996c.tar.lz
gsoc2013-evolution-cf218fc8f52e8d4502979cf12995bcdb645d996c.tar.xz
gsoc2013-evolution-cf218fc8f52e8d4502979cf12995bcdb645d996c.tar.zst
gsoc2013-evolution-cf218fc8f52e8d4502979cf12995bcdb645d996c.zip
BR is not a "pair" HTML element
Diffstat (limited to 'em-format')
-rw-r--r--em-format/e-mail-formatter-quote.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/em-format/e-mail-formatter-quote.c b/em-format/e-mail-formatter-quote.c
index 5245fee2ba..71bfbcd6bb 100644
--- a/em-format/e-mail-formatter-quote.c
+++ b/em-format/e-mail-formatter-quote.c
@@ -85,11 +85,11 @@ mail_formatter_quote_run (EMailFormatter *formatter,
g_object_unref (settings);
if (qf->priv->credits && *qf->priv->credits) {
- gchar *credits = g_strdup_printf ("%s<br/>", qf->priv->credits);
+ gchar *credits = g_strdup_printf ("%s<br>", qf->priv->credits);
camel_stream_write_string (stream, credits, cancellable, NULL);
g_free (credits);
} else {
- camel_stream_write_string (stream, "<br/>", cancellable, NULL);
+ camel_stream_write_string (stream, "<br>", cancellable, NULL);
}
if (qf->priv->flags & E_MAIL_FORMATTER_QUOTE_FLAG_CITE) {