diff options
Diffstat (limited to 'ui_70-summary.c')
-rw-r--r-- | ui_70-summary.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ui_70-summary.c b/ui_70-summary.c index 4140446..e398e50 100644 --- a/ui_70-summary.c +++ b/ui_70-summary.c @@ -44,6 +44,7 @@ void cgit_print_summary(void) { int columns = 3; + cgit_print_layout_start(); if (ctx.repo->enable_log_filecount) columns++; if (ctx.repo->enable_log_linecount) @@ -52,15 +53,14 @@ void cgit_print_summary(void) cgit_print_branches(ctx.cfg.summary_branches); cgit_print_tags(ctx.cfg.summary_tags); - if (ctx.cfg.summary_log > 0) { + /* 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); cgit_print_log(ctx.qry.head, 0, ctx.cfg.summary_log, NULL, NULL, NULL, 0, 0, 0); } +*/ urls = 0; - cgit_add_clone_urls(print_url); - html("</table>"); - cgit_print_layout_end(); } /* The caller must free the return value. */ |