aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorla-ninpre <leobrekalini@gmail.com>2020-12-06 22:23:24 +0300
committerla-ninpre <leobrekalini@gmail.com>2020-12-06 22:23:24 +0300
commitd366ec1e1e796937387208ef8c26097e5ff44ae9 (patch)
tree18913d5b077a7e1306d9ee7bf98cc8f51bd7099a
parente5223c7283878d887d4e67937b7f89f9bf8ba0a1 (diff)
downloadcgit-d366ec1e1e796937387208ef8c26097e5ff44ae9.tar.gz
cgit-d366ec1e1e796937387208ef8c26097e5ff44ae9.zip
ui-repolist: make table headers lowercase
>:(
-rw-r--r--ui-repolist.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/ui-repolist.c b/ui-repolist.c
index 529a203..9a9c1a2 100644
--- a/ui-repolist.c
+++ b/ui-repolist.c
@@ -143,13 +143,13 @@ static void print_sort_header(const char *title, const char *sort)
static void print_header(void)
{
html("<tr class='nohover'>");
- print_sort_header("Name", "name");
- print_sort_header("Description", "desc");
+ print_sort_header("name", "name");
+ print_sort_header("description", "desc");
if (ctx.cfg.enable_index_owner)
- print_sort_header("Owner", "owner");
- print_sort_header("Idle", "idle");
+ print_sort_header("owner", "owner");
+ print_sort_header("idle", "idle");
if (ctx.cfg.enable_index_links)
- html("<th class='left'>Links</th>");
+ html("<th class='left'>links</th>");
html("</tr>\n");
}