about summary refs log tree commit diff stats
path: root/ui-repolist.c
diff options
context:
space:
mode:
Diffstat (limited to 'ui-repolist.c')
-rw-r--r--ui-repolist.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/ui-repolist.c b/ui-repolist.c index 529a203..97b11c5 100644 --- a/ui-repolist.c +++ b/ui-repolist.c
@@ -321,7 +321,7 @@ void cgit_print_repolist(void)
321 } 321 }
322 htmlf("<tr><td class='%s'>", 322 htmlf("<tr><td class='%s'>",
323 !sorted && section ? "sublevel-repo" : "toplevel-repo"); 323 !sorted && section ? "sublevel-repo" : "toplevel-repo");
324 cgit_summary_link(ctx.repo->name, ctx.repo->name, NULL, NULL); 324 cgit_summary_link(ctx.repo->name, NULL, NULL, NULL);
325 html("</td><td>"); 325 html("</td><td>");
326 repourl = cgit_repourl(ctx.repo->url); 326 repourl = cgit_repourl(ctx.repo->url);
327 html_link_open(repourl, NULL, NULL); 327 html_link_open(repourl, NULL, NULL);
@@ -353,8 +353,10 @@ void cgit_print_repolist(void)
353 if (ctx.cfg.enable_index_links) { 353 if (ctx.cfg.enable_index_links) {
354 html("<td>"); 354 html("<td>");
355 cgit_summary_link("summary", NULL, "button", NULL); 355 cgit_summary_link("summary", NULL, "button", NULL);
356 html(" ");
356 cgit_log_link("log", NULL, "button", NULL, NULL, NULL, 357 cgit_log_link("log", NULL, "button", NULL, NULL, NULL,
357 0, NULL, NULL, ctx.qry.showmsg, 0); 358 0, NULL, NULL, ctx.qry.showmsg, 0);
359 html(" ");
358 cgit_tree_link("tree", NULL, "button", NULL, NULL, NULL); 360 cgit_tree_link("tree", NULL, "button", NULL, NULL, NULL);
359 html("</td>"); 361 html("</td>");
360 } 362 }