aboutsummaryrefslogtreecommitdiffstats
path: root/ui-repolist.c
diff options
context:
space:
mode:
Diffstat (limited to 'ui-repolist.c')
-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)
143static void print_header(void) 143static void print_header(void)
144{ 144{
145 html("<tr class='nohover'>"); 145 html("<tr class='nohover'>");
146 print_sort_header("Name", "name"); 146 print_sort_header("name", "name");
147 print_sort_header("Description", "desc"); 147 print_sort_header("description", "desc");
148 if (ctx.cfg.enable_index_owner) 148 if (ctx.cfg.enable_index_owner)
149 print_sort_header("Owner", "owner"); 149 print_sort_header("owner", "owner");
150 print_sort_header("Idle", "idle"); 150 print_sort_header("idle", "idle");
151 if (ctx.cfg.enable_index_links) 151 if (ctx.cfg.enable_index_links)
152 html("<th class='left'>Links</th>"); 152 html("<th class='left'>links</th>");
153 html("</tr>\n"); 153 html("</tr>\n");
154} 154}
155 155