about summary refs log tree commit diff stats
path: root/ui-summary.c
diff options
context:
space:
mode:
Diffstat (limited to 'ui-summary.c')
-rw-r--r--ui-summary.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/ui-summary.c b/ui-summary.c index cd1fef5..fb04dc3 100644 --- a/ui-summary.c +++ b/ui-summary.c
@@ -48,6 +48,7 @@ void cgit_print_summary(void)
48 if (ctx.repo->enable_log_linecount) 48 if (ctx.repo->enable_log_linecount)
49 columns++; 49 columns++;
50 50
51 cgit_print_layout_start();
51 html("<table summary='repository info' class='list nowrap'>"); 52 html("<table summary='repository info' class='list nowrap'>");
52 cgit_print_branches(ctx.cfg.summary_branches); 53 cgit_print_branches(ctx.cfg.summary_branches);
53 htmlf("<tr class='nohover'><td colspan='%d'>&nbsp;</td></tr>", columns); 54 htmlf("<tr class='nohover'><td colspan='%d'>&nbsp;</td></tr>", columns);
@@ -60,6 +61,7 @@ void cgit_print_summary(void)
60 urls = 0; 61 urls = 0;
61 cgit_add_clone_urls(print_url); 62 cgit_add_clone_urls(print_url);
62 html("</table>"); 63 html("</table>");
64 cgit_print_layout_end();
63} 65}
64 66
65/* The caller must free the return value. */ 67/* The caller must free the return value. */