summaryrefslogtreecommitdiff
path: root/ui-summary.c
diff options
context:
space:
mode:
authorKent Overstreet <kmo@daterainc.com>2014-03-22 18:05:42 -0700
committerKent Overstreet <kmo@daterainc.com>2014-03-22 18:05:42 -0700
commit03de8b68f17396d7710d2584c6a6fc786c26279f (patch)
tree4c2b9125786e3ca99f7d208d62eeca1fdf4abb97 /ui-summary.c
parent88b93113235452d47e7ce474689327c43e64b843 (diff)
Add support for log output minus another branchHEADmaster
This lets you do the equivalent of git log ^ref1 ref2 by adding an id2 parameter to a log url
Diffstat (limited to 'ui-summary.c')
-rw-r--r--ui-summary.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui-summary.c b/ui-summary.c
index ddd8f1b..2c41cff 100644
--- a/ui-summary.c
+++ b/ui-summary.c
@@ -85,7 +85,7 @@ void cgit_print_summary()
cgit_print_tags(ctx.cfg.summary_tags);
if (ctx.cfg.summary_log > 0) {
htmlf("<tr class='nohover'><td colspan='%d'>&nbsp;</td></tr>", columns);
- cgit_print_log(ctx.qry.head, 0, ctx.cfg.summary_log, NULL,
+ cgit_print_log(ctx.qry.head, NULL, 0, ctx.cfg.summary_log, NULL,
NULL, NULL, 0, 0, 0);
}
if (ctx.repo->clone_url)