diff options
author | Iain Holmes <iain@src.gnome.org> | 2001-07-10 03:02:59 +0800 |
---|---|---|
committer | Iain Holmes <iain@src.gnome.org> | 2001-07-10 03:02:59 +0800 |
commit | dbc2b81a2e5c90d5f0e8e987b87a6c659bf6ed70 (patch) | |
tree | dc9629cc58d55c0cf16b3047d2e665cdbad29f44 /my-evolution | |
parent | d1716cf6d66d51de89747d929c521c5f7465a3d4 (diff) | |
download | gsoc2013-evolution-dbc2b81a2e5c90d5f0e8e987b87a6c659bf6ed70.tar.gz gsoc2013-evolution-dbc2b81a2e5c90d5f0e8e987b87a6c659bf6ed70.tar.zst gsoc2013-evolution-dbc2b81a2e5c90d5f0e8e987b87a6c659bf6ed70.zip |
Fix the big black line down the middle bug
svn path=/trunk/; revision=10927
Diffstat (limited to 'my-evolution')
-rw-r--r-- | my-evolution/ChangeLog | 5 | ||||
-rw-r--r-- | my-evolution/e-summary-rdf.c | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/my-evolution/ChangeLog b/my-evolution/ChangeLog index 2974da63ce..deb5c70ba6 100644 --- a/my-evolution/ChangeLog +++ b/my-evolution/ChangeLog @@ -1,5 +1,10 @@ 2001-07-09 Iain Holmes <iain@ximian.com> + * e-summary-rdf.c (tree_walk): Fix HTML so it doesn't give the big black + line + +2001-07-09 Iain Holmes <iain@ximian.com> + * e-summary-tasks.c (generate_html): Fix same HTML bug as in calendar. 2001-07-09 Iain Holmes <iain@ximian.com> diff --git a/my-evolution/e-summary-rdf.c b/my-evolution/e-summary-rdf.c index 435268df04..dee5077bda 100644 --- a/my-evolution/e-summary-rdf.c +++ b/my-evolution/e-summary-rdf.c @@ -247,6 +247,7 @@ tree_walk (xmlNodePtr root, g_string_append (html, "</b></dt>"); if (r->shown == FALSE) { + g_string_append (html, "</dl>"); return; } |