summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Hjemli <hjemli@gmail.com>2007-02-03 13:08:21 +0100
committerLars Hjemli <hjemli@gmail.com>2007-02-03 13:10:26 +0100
commitbb3e7950c39b67e863a618b3a0e766544b65d3cb (patch)
treeab77725e99399db25406fe46c28948922e5fc997
parent66414b68cf30f9ae7613c68833e7cbc8e93adae2 (diff)
downloadcgit-bb3e7950c39b67e863a618b3a0e766544b65d3cb.tar.gz
cgit-bb3e7950c39b67e863a618b3a0e766544b65d3cb.tar.bz2
cgit-bb3e7950c39b67e863a618b3a0e766544b65d3cb.zip
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>
-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)
html("<form method='get' href='");
html_attr(cgit_currurl());
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)
09Small changesRené 'Necoro' Neumann3-1/+4 2008-03-07Better session handlingRené 'Necoro' Neumann1-5/+54 2008-03-07Small changesRené 'Necoro' Neumann1-1/+4 2008-03-07Updated shm module to 1.2René 'Necoro' Neumann1-8/+21 2008-03-07Update TODORené 'Necoro' Neumann1-3/+1 2008-03-07hmm ... yesRené 'Necoro' Neumann1-1/+1 2008-03-06Used better exceptions for configuration parserRené 'Necoro' Neumann1-26/+114 2008-03-06Update translationRené 'Necoro' Neumann2-349/+393 2008-03-06Update createpot.shRené 'Necoro' Neumann1-3/+2 2008-03-06Use 'nofork' instead of 'nolistener'René 'Necoro' Neumann1-3/+3 2008-03-05Install glade files into template dir and not data dirRené 'Necoro' Neumann2-2/+1 2008-03-05Added dependency listRené 'Necoro' Neumann3-117/+237