diff options
Diffstat (limited to 'ui_70-summary.c')
-rw-r--r-- | ui_70-summary.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/ui_70-summary.c b/ui_70-summary.c index e398e50..8db5c7f 100644 --- a/ui_70-summary.c +++ b/ui_70-summary.c @@ -1,6 +1,7 @@ /* ui-summary.c: functions for generating repo summary page * * Copyright (C) 2006-2014 cgit Development Team <cgit@lists.zx2c4.com> + * 2018 Vincenzo 'KatolaZ' Nicosia <katolaz@freaknet.org> * * Licensed under GNU General Public License v2 * (see COPYING for full license text) @@ -53,13 +54,11 @@ void cgit_print_summary(void) cgit_print_branches(ctx.cfg.summary_branches); cgit_print_tags(ctx.cfg.summary_tags); - /* FIXME: removed log -- reintroduce it as soon as we have a working cgit_print_log */ -/* if (ctx.cfg.summary_log > 0) { - htmlf("<tr class='nohover'><td colspan='%d'> </td></tr>", columns); + if (ctx.cfg.summary_log > 0) { cgit_print_log(ctx.qry.head, 0, ctx.cfg.summary_log, NULL, NULL, NULL, 0, 0, 0); } -*/ + urls = 0; } |