the repository which powers this website
ui-repolist,ui-shared: remove redundant title on repo anchors
The title attribute was being set to the same value as the anchor element text. Signed-off-by: Chris Mayo <[email protected]> Reviewed-by: Eric Wong <[email protected]> Reviewed-by: Petr Vorel <[email protected]> Signed-off-by: Jason A. Donenfeld <[email protected]>
Chris Mayo 2022-12-19
parent fd20a54 · commit afffc3e
-rw-r--r--ui-repolist.c2
-rw-r--r--ui-shared.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/ui-repolist.c b/ui-repolist.c
index 529a2038..d12e3dd3 100644
--- a/ui-repolist.c
+++ b/ui-repolist.c
@@ -321,7 +321,7 @@ void cgit_print_repolist(void)
}
htmlf("<tr><td class='%s'>",
!sorted && section ? "sublevel-repo" : "toplevel-repo");
- cgit_summary_link(ctx.repo->name, ctx.repo->name, NULL, NULL);
+ cgit_summary_link(ctx.repo->name, NULL, NULL, NULL);
html("</td><td>");
repourl = cgit_repourl(ctx.repo->url);
html_link_open(repourl, NULL, NULL);
diff --git a/ui-shared.c b/ui-shared.c
index acd8ab55..f880c4e5 100644
--- a/ui-shared.c
+++ b/ui-shared.c
@@ -995,7 +995,7 @@ static void print_header(void)
if (ctx.repo) {
cgit_index_link("index", NULL, NULL, NULL, NULL, 0, 1);
html(" : ");
- cgit_summary_link(ctx.repo->name, ctx.repo->name, NULL, NULL);
+ cgit_summary_link(ctx.repo->name, NULL, NULL, NULL);
if (ctx.env.authenticated) {
html("</td><td class='form'>");
html("<form method='get'>\n");