From bb3e7950c39b67e863a618b3a0e766544b65d3cb Mon Sep 17 00:00:00 2001 From: Lars Hjemli Date: Sat, 3 Feb 2007 13:08:21 +0100 Subject: 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 --- ui-shared.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'ui-shared.c') 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) html("
"); + if (!cgit_virtual_root) { + if (cgit_query_repo) + html_hidden("r", cgit_query_repo); + if (cgit_query_page) + html_hidden("p", cgit_query_page); + } if (cgit_query_head) html_hidden("h", cgit_query_head); if (cgit_query_sha1) -- cgit v1.2.3-59-g8ed1b