mirror of
https://git.zx2c4.com/cgit
synced 2024-11-22 08:28:42 +00:00
Fix commitdiff annoyance
Someone were a bit sloppy when the commitdiff got included 'inline' in
commit 89aa3c0d0a
. 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>
This commit is contained in:
parent
3cfcb086ab
commit
9ec5cd7944
@ -227,10 +227,10 @@ void cgit_print_commit(char *hex)
|
|||||||
html("<div class='diffstat-summary'>");
|
html("<div class='diffstat-summary'>");
|
||||||
htmlf("%d files changed, %d insertions, %d deletions",
|
htmlf("%d files changed, %d insertions, %d deletions",
|
||||||
files, total_adds, total_rems);
|
files, total_adds, total_rems);
|
||||||
|
html("</div>");
|
||||||
cgit_print_diff(ctx.qry.sha1,
|
cgit_print_diff(ctx.qry.sha1,
|
||||||
sha1_to_hex(commit->parents->item->object.sha1),
|
sha1_to_hex(commit->parents->item->object.sha1),
|
||||||
NULL);
|
NULL);
|
||||||
html(")</div>");
|
|
||||||
}
|
}
|
||||||
cgit_free_commitinfo(info);
|
cgit_free_commitinfo(info);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user