]> git.cameronkatri.com Git - cgit.git/commitdiff
ui-repolist: use ctx.qry.url instead of rooturl, in case we're filtering
authorJason A. Donenfeld <Jason@zx2c4.com>
Tue, 3 Mar 2015 16:06:48 +0000 (17:06 +0100)
committerJason A. Donenfeld <Jason@zx2c4.com>
Tue, 3 Mar 2015 16:06:48 +0000 (17:06 +0100)
ui-repolist.c
ui-shared.c

index 2b551813f6a5d9790672ea863a59f18dc3348ab3..4b16b6e34225ca383c53503ed7b153becea01861 100644 (file)
@@ -108,7 +108,7 @@ static int is_in_url(struct cgit_repo *repo)
 static void print_sort_header(const char *title, const char *sort)
 {
        html("<th class='left'><a href='");
-       html_attr(cgit_rooturl());
+       html_attr(ctx.qry.url);
        htmlf("?s=%s", sort);
        if (ctx.qry.search) {
                html("&amp;q=");
@@ -315,7 +315,7 @@ void cgit_print_repolist()
                                cgit_close_filter(ctx.repo->owner_filter);
                        } else {
                                html("<a href='");
-                               html_attr(cgit_rooturl());
+                               html_attr(ctx.qry.url);
                                html("?q=");
                                html_url_arg(ctx.repo->owner);
                                html("'>");
index 1a84afc6bf39564aa73ef7f58826fe9f67f985f1..21e163cd6b39d17ef35aeaee2316bd3da36f9895 100644 (file)
@@ -952,7 +952,7 @@ void cgit_print_pageheader(void)
                                  NULL, NULL, 0);
                html("</td><td class='form'>");
                html("<form method='get' action='");
-               html_attr(cgit_rooturl());
+               html_attr(ctx.qry.url);
                html("'>\n");
                html("<input type='text' name='q' size='10' value='");
                html_attr(ctx.qry.search);