author | Lars Hjemli <hjemli@gmail.com> | 2007-06-06 21:02:40 (UTC) |
---|---|---|
committer | Lars Hjemli <hjemli@gmail.com> | 2007-06-06 21:02:48 (UTC) |
commit | c83db796a1cf6893de275e78b98cef10eccc1200 (patch) (side-by-side diff) | |
tree | a4c474216e635f09a39d08f349802a3ef38fb3eb | |
parent | 4a6201e318d1db69d126f08a3d80ce2d5cf7ac01 (diff) | |
download | cgit-c83db796a1cf6893de275e78b98cef10eccc1200.zip cgit-c83db796a1cf6893de275e78b98cef10eccc1200.tar.gz cgit-c83db796a1cf6893de275e78b98cef10eccc1200.tar.bz2 |
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>
-rw-r--r-- | ui-diff.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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); else cgit_print_error(fmt("Bad commit: %s", head)); + html("</td></tr>"); + html("</table>"); return; } |