all repos — cgit @ 9ec5cd7944a7099515b7d41107007d6332a2540e

a hyperfast web frontend for git written in c

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>
Lars Hjemli hjemli@gmail.com
Thu, 17 Apr 2008 18:29:50 +0200
commit

9ec5cd7944a7099515b7d41107007d6332a2540e

parent

3cfcb086abfc2e94426623b487a47a8b5cc57b7e

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

jump to
M ui-commit.cui-commit.c

@@ -227,10 +227,10 @@ 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); }