diff options
Diffstat (limited to 'ui-repolist.c')
-rw-r--r-- | ui-repolist.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ui-repolist.c b/ui-repolist.c index 2a910bd..449478d 100644 --- a/ui-repolist.c +++ b/ui-repolist.c | |||
@@ -131,8 +131,8 @@ void print_pager(int items, int pagelen, char *search, char *sort) | |||
131 | html("<div class='pager'>"); | 131 | html("<div class='pager'>"); |
132 | for(i = 0, ofs = 0; ofs < items; i++, ofs = i * pagelen) { | 132 | for(i = 0, ofs = 0; ofs < items; i++, ofs = i * pagelen) { |
133 | class = (ctx.qry.ofs == ofs) ? "current" : NULL; | 133 | class = (ctx.qry.ofs == ofs) ? "current" : NULL; |
134 | cgit_index_link(fmt("[%d]", i+1), fmt("Page %d", i+1), class, | 134 | cgit_index_link(fmt("[%d]", i + 1), fmt("Page %d", i + 1), |
135 | search, sort, ofs); | 135 | class, search, sort, ofs); |
136 | } | 136 | } |
137 | html("</div>"); | 137 | html("</div>"); |
138 | } | 138 | } |
@@ -264,7 +264,7 @@ void cgit_print_repolist() | |||
264 | sort_repolist("section"); | 264 | sort_repolist("section"); |
265 | 265 | ||
266 | html("<table summary='repository list' class='list nowrap'>"); | 266 | html("<table summary='repository list' class='list nowrap'>"); |
267 | for (i=0; i<cgit_repolist.count; i++) { | 267 | for (i = 0; i < cgit_repolist.count; i++) { |
268 | ctx.repo = &cgit_repolist.repos[i]; | 268 | ctx.repo = &cgit_repolist.repos[i]; |
269 | if (!(is_match(ctx.repo) && is_in_url(ctx.repo))) | 269 | if (!(is_match(ctx.repo) && is_in_url(ctx.repo))) |
270 | continue; | 270 | continue; |