Close a <tr> properly

No reason to generate illegal html.

Signed-off-by: Lars Hjemli <hjemli@gmail.com>
This commit is contained in:
Lars Hjemli 2007-05-24 00:02:18 +02:00
parent bbcdc290c6
commit 62dcc05c27

View File

@ -164,7 +164,7 @@ static int cgit_print_archive_cb(const char *refname, const unsigned char *sha1,
html_link_open(url, NULL, NULL); html_link_open(url, NULL, NULL);
html_txt(buf); html_txt(buf);
html_link_close(); html_link_close();
html("</td><tr>"); html("</td></tr>");
return 0; return 0;
} }