diff options
author | Lars Hjemli <hjemli@gmail.com> | 2012-01-03 16:06:58 +0000 |
---|---|---|
committer | Lars Hjemli <hjemli@gmail.com> | 2012-01-03 16:06:58 +0000 |
commit | 04254fa903701943bd45a479a952cc213a5b112a (patch) | |
tree | 5ae865f0cae8505cb54d3360baa256fc684e3bbc /ui-repolist.c | |
parent | shared.c: Only setenv() if value is non-null (diff) | |
parent | Fix diff mode switching when side-by-side-diffs=1 (diff) | |
download | cgit-pink-04254fa903701943bd45a479a952cc213a5b112a.tar.gz cgit-pink-04254fa903701943bd45a479a952cc213a5b112a.zip |
Merge branch 'stable'
Diffstat (limited to '')
-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) } -void print_pager(int items, int pagelen, char *search) +void print_pager(int items, int pagelen, char *search, char *sort) { int i; html("<div class='pager'>"); for(i = 0; i * pagelen < items; i++) cgit_index_link(fmt("[%d]", i+1), fmt("Page %d", i+1), NULL, - search, i * pagelen); + search, sort, i * pagelen); html("</div>"); } @@ -291,7 +291,7 @@ void cgit_print_repolist() if (!hits) cgit_print_error("No repositories found"); else if (hits > ctx.cfg.max_repo_count) - print_pager(hits, ctx.cfg.max_repo_count, ctx.qry.search); + print_pager(hits, ctx.cfg.max_repo_count, ctx.qry.search, ctx.qry.sort); cgit_print_docend(); } |