all repos — cgit @ c83db796a1cf6893de275e78b98cef10eccc1200

a hyperfast web frontend for git written in c

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>
Lars Hjemli hjemli@gmail.com
Wed, 06 Jun 2007 23:02:40 +0200
commit

c83db796a1cf6893de275e78b98cef10eccc1200

parent

4a6201e318d1db69d126f08a3d80ce2d5cf7ac01

1 files changed, 2 insertions(+), 0 deletions(-)

jump to
M ui-diff.cui-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; }