aboutsummaryrefslogtreecommitdiffstats
path: root/ui-shared.c
diff options
context:
space:
mode:
authorGravatar Lars Hjemli <hjemli@gmail.com>2007-02-03 21:08:21 (JST)
committerGravatar Lars Hjemli <hjemli@gmail.com>2007-02-03 21:10:26 (JST)
commitbb3e7950c39b67e863a618b3a0e766544b65d3cb (patch)
treeab77725e99399db25406fe46c28948922e5fc997 /ui-shared.c
parent66414b68cf30f9ae7613c68833e7cbc8e93adae2 (diff)
downloadcgit-bb3e7950c39b67e863a618b3a0e766544b65d3cb.zip
cgit-bb3e7950c39b67e863a618b3a0e766544b65d3cb.tar.gz
Fix search for non-virtual urls
When cgit don't use virtual urls, the current repo and page url parameters must be included in the search form as hidden input fields. Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (limited to 'ui-shared.c')
-rw-r--r--ui-shared.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/ui-shared.c b/ui-shared.c
index 6300516..3322561 100644
--- a/ui-shared.c
+++ b/ui-shared.c
@@ -121,6 +121,12 @@ void cgit_print_pageheader(char *title, int show_search)
121 html("<form method='get' href='"); 121 html("<form method='get' href='");
122 html_attr(cgit_currurl()); 122 html_attr(cgit_currurl());
123 html("'>"); 123 html("'>");
124 if (!cgit_virtual_root) {
125 if (cgit_query_repo)
126 html_hidden("r", cgit_query_repo);
127 if (cgit_query_page)
128 html_hidden("p", cgit_query_page);
129 }
124 if (cgit_query_head) 130 if (cgit_query_head)
125 html_hidden("h", cgit_query_head); 131 html_hidden("h", cgit_query_head);
126 if (cgit_query_sha1) 132 if (cgit_query_sha1)