X-Git-Url: https://gitweb.ps.run/ps-cgit/blobdiff_plain/4675b91211fe3119a0def539521ac759b3fb57d0..7ea35f9f8ecf61ab42be9947aae1176ab6e089bd:/ui-repolist.c diff --git a/ui-repolist.c b/ui-repolist.c index 46cbacf..dead1bf 100644 --- a/ui-repolist.c +++ b/ui-repolist.c @@ -43,8 +43,10 @@ static int get_repo_modtime(const struct cgit_repo *repo, time_t *mtime) path = fmt("%s/%s", repo->path, ctx.cfg.agefile); if (stat(path, &s) == 0) { *mtime = read_agefile(path); - r->mtime = *mtime; - return 1; + if (*mtime) { + r->mtime = *mtime; + return 1; + } } path = fmt("%s/refs/heads/%s", repo->path, repo->defbranch ? @@ -102,7 +104,7 @@ void print_sort_header(const char *title, const char *sort) { htmlf("%s", title); @@ -158,7 +160,7 @@ static int sort_section(const void *a, const void *b) result = cmp(r1->section, r2->section); if (!result) { - if (!strcmp(ctx.cfg.section_sort, "age")) { + if (!strcmp(ctx.cfg.repository_sort, "age")) { // get_repo_modtime caches the value in r->mtime, so we don't // have to worry about inefficiencies here. if (get_repo_modtime(r1, &t) && get_repo_modtime(r2, &t)) @@ -255,7 +257,7 @@ void cgit_print_repolist() if(ctx.qry.sort) sorted = sort_repolist(ctx.qry.sort); - else + else if (ctx.cfg.section_sort) sort_repolist("section"); html("");