diff options
author | Benjamin Close | 2008-11-25 06:25:35 -0800 |
---|---|---|
committer | Lars Hjemli | 2008-11-29 13:25:54 +0100 |
commit | d71c0c725d7b5ddfc5b788d328a5fc7a27739662 (patch) | |
tree | c7b0e71793470987c05a278dc5ed011a4903f524 /cgit.c | |
parent | 7b5cee65fd9cf31e4f19ce4ff613778cb95512a9 (diff) | |
download | cgit-d71c0c725d7b5ddfc5b788d328a5fc7a27739662.tar.gz cgit-d71c0c725d7b5ddfc5b788d328a5fc7a27739662.tar.bz2 cgit-d71c0c725d7b5ddfc5b788d328a5fc7a27739662.zip |
Add support for sorting by Age in the repolist
Signed-off-by: Lars Hjemli <[email protected]>
Diffstat (limited to 'cgit.c')
-rw-r--r-- | cgit.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -154,6 +154,8 @@ static void querystring_cb(const char *name, const char *value) | |||
154 | ctx.qry.name = xstrdup(value); | 154 | ctx.qry.name = xstrdup(value); |
155 | } else if (!strcmp(name, "mimetype")) { | 155 | } else if (!strcmp(name, "mimetype")) { |
156 | ctx.qry.mimetype = xstrdup(value); | 156 | ctx.qry.mimetype = xstrdup(value); |
157 | } else if (!strcmp(name, "s")){ | ||
158 | ctx.qry.sort = xstrdup(value); | ||
157 | } | 159 | } |
158 | } | 160 | } |
159 | 161 | ||