]> git.cameronkatri.com Git - cgit.git/commitdiff
Fix commitdiff annoyance
authorLars Hjemli <hjemli@gmail.com>
Thu, 17 Apr 2008 16:29:50 +0000 (18:29 +0200)
committerLars Hjemli <hjemli@gmail.com>
Thu, 17 Apr 2008 16:33:33 +0000 (18:33 +0200)
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>
ui-commit.c

index dd36cc013244abb58a4516d7a929c659af39b41a..12a96fbc6929a3797c9991b7c1d7dbf29ae99d4f 100644 (file)
@@ -227,10 +227,10 @@ void cgit_print_commit(char *hex)
                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);
 }