diff options
author | Naïm Favier <fnaim42@gmail.com> | 2019-12-09 18:38:14 +0000 |
---|---|---|
committer | Christian Hesse <mail@eworm.de> | 2022-12-19 17:02:52 +0000 |
commit | ecd9c584ce5894f4a06d23eec5678a642c2f7020 (patch) | |
tree | bafdc6b4f72be20c28dcbaddc3b9b67061c8c24d /ui-repolist.c | |
parent | 907134b7a29177cb45aa461c549c004b1ae875af (diff) | |
download | cgit-ecd9c584ce5894f4a06d23eec5678a642c2f7020.tar cgit-ecd9c584ce5894f4a06d23eec5678a642c2f7020.tar.gz cgit-ecd9c584ce5894f4a06d23eec5678a642c2f7020.zip |
Make default pages configurablech/default-pages
Signed-off-by: Christian Hesse <mail@eworm.de>
Diffstat (limited to 'ui-repolist.c')
-rw-r--r-- | ui-repolist.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui-repolist.c b/ui-repolist.c index d12e3dd..2390eae 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, NULL, NULL, NULL); + cgit_repo_link(ctx.repo->name, NULL, NULL, NULL); html("</td><td>"); repourl = cgit_repourl(ctx.repo->url); html_link_open(repourl, NULL, NULL); |