2
0
mirror of https://git.zx2c4.com/cgit/ synced 2024-11-10 07:10:33 +00:00

ui-diff: close td/tr/table properly

The previous commit fixed the diff-view when two trees where specified on
the querystring (sha1/sha2) but made the generated html invalid when only
a commit sha1 is specified. This fixes it.

Signed-off-by: Lars Hjemli <hjemli@gmail.com>
This commit is contained in:
Lars Hjemli 2007-06-06 23:02:40 +02:00
parent 4a6201e318
commit c83db796a1

View File

@ -106,6 +106,8 @@ void cgit_print_diff(const char *head, const char *old_hex, const char *new_hex,
cgit_diff_commit(commit, filepair_cb); cgit_diff_commit(commit, filepair_cb);
else else
cgit_print_error(fmt("Bad commit: %s", head)); cgit_print_error(fmt("Bad commit: %s", head));
html("</td></tr>");
html("</table>");
return; return;
} }