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 ?
{
htmlf("<th class='left'><a href='%s?s=%s", cgit_rooturl(), sort);
if (ctx.qry.search) {
- html("&q=");
+ html("&q=");
html_url_arg(ctx.qry.search);
}
htmlf("'>%s</a></th>", title);
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))
if(ctx.qry.sort)
sorted = sort_repolist(ctx.qry.sort);
- else
+ else if (ctx.cfg.section_sort)
sort_repolist("section");
html("<table summary='repository list' class='list nowrap'>");