the repository which powers this website
Close a <tr> properly
No reason to generate illegal html. Signed-off-by: Lars Hjemli <[email protected]>
Lars Hjemli 2007-05-24
parent bbcdc29 · commit 62dcc05
-rw-r--r--ui-summary.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui-summary.c b/ui-summary.c
index 5c1fc33d..18608b8e 100644
--- a/ui-summary.c
+++ b/ui-summary.c
@@ -164,7 +164,7 @@ static int cgit_print_archive_cb(const char *refname, const unsigned char *sha1,
html_link_open(url, NULL, NULL);
html_txt(buf);
html_link_close();
- html("</td><tr>");
+ html("</td></tr>");
return 0;
}