about summary refs log tree commit diff
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
parentUpdate README with install/config information (diff)
downloadcgit-pink-bb3e7950c39b67e863a618b3a0e766544b65d3cb.tar.gz
cgit-pink-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>
Diffstat (limited to '')
-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)
?id=8065fcabc35006c55b42a8771fa7cdedf4f31a8d&follow=1'>Make sure new cap is actually larger than new lengthJune McEnroe 2022-02-20Remove unused mbs.len field from struct EditJune McEnroe 2022-02-19Remove unneeded includes in ui.cJune McEnroe 2022-02-19Reimplement tab completeJune McEnroe 2022-02-19Handle errors from editFn, etc.June McEnroe 2022-02-19Reimplement text macrosJune McEnroe 2022-02-19Factor out input handling to input.cJune McEnroe 2022-02-19Factor out window management to window.cJune McEnroe 2022-02-19Enable -Wmissing-prototypesJune McEnroe 2022-02-19Fix edit.[ch] license notice additional permissionsJune McEnroe 2022-02-19Run line editing testsJune McEnroe 2022-02-18Implement new line editing "library"June McEnroe 2022-02-18Simplify cursor positioning in inputJune McEnroe 2022-02-18Fix M-f orderingJune McEnroe 2022-02-12Move sandman build to scripts/MakefileJune McEnroe 2022-02-12Use compat_readpassphrase.c on LinuxJune McEnroe 2022-02-12Copy RPP defines from oconfigureJune McEnroe