cgit

commit c83db796a1cf6893de275e78b98cef10eccc1200

Author: Lars Hjemli <hjemli@gmail.com>

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>

 ui-diff.c | 2 ++


diff --git a/ui-diff.c b/ui-diff.c
index 3c4d52a11782aa8fae0a7511831fc735f40a85a0..5c864d926777670de0ddf449c96b0e016c294b4c 100644
--- a/ui-diff.c
+++ b/ui-diff.c
@@ -106,6 +106,8 @@ 		if (commit && !parse_commit(commit))
 			cgit_diff_commit(commit, filepair_cb);
 		else
 			cgit_print_error(fmt("Bad commit: %s", head));
+		html("</td></tr>");
+		html("</table>");
 		return;
 	}