]> gitweb.ps.run Git - ps-cgit/blobdiff - ui-repolist.c
scan-tree: Unify gitweb.* and cgit.* settings into one config option.
[ps-cgit] / ui-repolist.c
index 7e7f1fb4105902cfd66b7a31f16a3abc3ca54895..36c067a3cb22643c6dca3187c6f84c0a73fda53e 100644 (file)
@@ -104,7 +104,7 @@ void print_sort_header(const char *title, const char *sort)
 {
        htmlf("<th class='left'><a href='%s?s=%s", cgit_rooturl(), sort);
        if (ctx.qry.search) {
-               html("&q=");
+               html("&amp;q=");
                html_url_arg(ctx.qry.search);
        }
        htmlf("'>%s</a></th>", title);
@@ -160,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))