diff options
author | Lars Hjemli | 2012-01-03 16:06:58 +0000 |
---|---|---|
committer | Lars Hjemli | 2012-01-03 16:06:58 +0000 |
commit | 04254fa903701943bd45a479a952cc213a5b112a (patch) | |
tree | 5ae865f0cae8505cb54d3360baa256fc684e3bbc /ui-repolist.c | |
parent | d96d2c98ebc4c2d3765f5b35c4142e0e828a421b (diff) | |
parent | f2ced535e9f2c2ada7f184735a07a1190a9d810f (diff) | |
download | cgit-04254fa903701943bd45a479a952cc213a5b112a.tar.gz cgit-04254fa903701943bd45a479a952cc213a5b112a.tar.bz2 cgit-04254fa903701943bd45a479a952cc213a5b112a.zip |
Merge branch 'stable'
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 25c36ce..a09a689 100644 --- a/ui-repolist.c +++ b/ui-repolist.c | |||
@@ -118,13 +118,13 @@ void print_header(int columns) | |||
118 | } | 118 | } |
119 | 119 | ||
120 | 120 | ||
121 | void print_pager(int items, int pagelen, char *search) | 121 | void print_pager(int items, int pagelen, char *search, char *sort) |
122 | { | 122 | { |
123 | int i; | 123 | int i; |
124 | html("<div class='pager'>"); | 124 | html("<div class='pager'>"); |
125 | for(i = 0; i * pagelen < items; i++) | 125 | for(i = 0; i * pagelen < items; i++) |
126 | cgit_index_link(fmt("[%d]", i+1), fmt("Page %d", i+1), NULL, | 126 | cgit_index_link(fmt("[%d]", i+1), fmt("Page %d", i+1), NULL, |
127 | search, i * pagelen); | 127 | search, sort, i * pagelen); |
128 | html("</div>"); | 128 | html("</div>"); |
129 | } | 129 | } |
130 | 130 | ||
@@ -291,7 +291,7 @@ void cgit_print_repolist() | |||
291 | if (!hits) | 291 | if (!hits) |
292 | cgit_print_error("No repositories found"); | 292 | cgit_print_error("No repositories found"); |
293 | else if (hits > ctx.cfg.max_repo_count) | 293 | else if (hits > ctx.cfg.max_repo_count) |
294 | print_pager(hits, ctx.cfg.max_repo_count, ctx.qry.search); | 294 | print_pager(hits, ctx.cfg.max_repo_count, ctx.qry.search, ctx.qry.sort); |
295 | cgit_print_docend(); | 295 | cgit_print_docend(); |
296 | } | 296 | } |
297 | 297 | ||