diff options
-rw-r--r-- | my-evolution/ChangeLog | 4 | ||||
-rw-r--r-- | my-evolution/e-summary-rdf.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/my-evolution/ChangeLog b/my-evolution/ChangeLog index 8987f6975f..f99cbf6b30 100644 --- a/my-evolution/ChangeLog +++ b/my-evolution/ChangeLog @@ -1,5 +1,9 @@ 2001-07-19 Iain Holmes <iain@ximian.com> + * e-summary-rdf.c (display_doc): Fix HTML + +2001-07-19 Iain Holmes <iain@ximian.com> + * e-summary-mail.c (folder_gen_html): correct the folder name. 2001-07-19 Iain Holmes <iain@ximian.com> diff --git a/my-evolution/e-summary-rdf.c b/my-evolution/e-summary-rdf.c index 5fed306fff..5677e5628d 100644 --- a/my-evolution/e-summary-rdf.c +++ b/my-evolution/e-summary-rdf.c @@ -308,7 +308,7 @@ display_doc (RDF *r) "width=\"48\" height=\"48\"><b>"); if (r->cache == NULL) { - g_string_append (html, _("There was an error downloading news feed</dt>")); + g_string_append (html, _("There was an error downloading news feed</b></dt>")); } else { tree_walk (r->cache->root, r, html); } |