author | Lars Hjemli <hjemli@gmail.com> | 2008-04-17 16:29:50 (UTC) |
---|---|---|
committer | Lars Hjemli <hjemli@gmail.com> | 2008-04-17 16:33:33 (UTC) |
commit | 9ec5cd7944a7099515b7d41107007d6332a2540e (patch) (side-by-side diff) | |
tree | 3d3284c73a72e7122cde02b0eb7ff1f4d8cd1a0d | |
parent | 3cfcb086abfc2e94426623b487a47a8b5cc57b7e (diff) | |
download | cgit-9ec5cd7944a7099515b7d41107007d6332a2540e.zip cgit-9ec5cd7944a7099515b7d41107007d6332a2540e.tar.gz cgit-9ec5cd7944a7099515b7d41107007d6332a2540e.tar.bz2 |
Fix commitdiff annoyance
Someone were a bit sloppy when the commitdiff got included 'inline' in
commit 89aa3c0d0a4c6d9885272602005975b763ea1604. This patch deletes a
stray `)` and makes sure the diffstat summary `<div>` is closed before
the full diff is printed.
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
-rw-r--r-- | ui-commit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui-commit.c b/ui-commit.c index dd36cc0..12a96fb 100644 --- a/ui-commit.c +++ b/ui-commit.c @@ -222,15 +222,15 @@ void cgit_print_commit(char *hex) max_changes = 0; cgit_diff_commit(commit, inspect_filepair); for(i = 0; i<files; i++) print_fileinfo(&items[i]); html("</table>"); html("<div class='diffstat-summary'>"); htmlf("%d files changed, %d insertions, %d deletions", files, total_adds, total_rems); + html("</div>"); cgit_print_diff(ctx.qry.sha1, sha1_to_hex(commit->parents->item->object.sha1), NULL); - html(")</div>"); } cgit_free_commitinfo(info); } |