aboutsummaryrefslogtreecommitdiffstats
path: root/ui-log.c
diff options
context:
space:
mode:
authorLars Hjemli <hjemli@gmail.com>2007-11-03 10:42:37 +0100
committerLars Hjemli <hjemli@gmail.com>2007-11-03 10:42:37 +0100
commit51140311bb3b0d4d0e859d5045ffe4c74478f5fe (patch)
tree6575f174e32abd5f5d1f481e5f7f5978525ae416 /ui-log.c
parentFix typo in css (diff)
downloadcgit-51140311bb3b0d4d0e859d5045ffe4c74478f5fe.tar.xz
cgit-51140311bb3b0d4d0e859d5045ffe4c74478f5fe.zip
Add search parameters to cgit_log_link
This makes the [prev] and [next] links work correctly on search results. Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (limited to '')
-rw-r--r--ui-log.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/ui-log.c b/ui-log.c
index e7f7d6f..9f5fdf6 100644
--- a/ui-log.c
+++ b/ui-log.c
@@ -118,13 +118,15 @@ void cgit_print_log(const char *tip, int ofs, int cnt, char *grep, char *pattern
if (ofs > 0) {
cgit_log_link("[prev]", NULL, NULL, cgit_query_head,
cgit_query_sha1, cgit_query_path,
- ofs - cnt);
+ ofs - cnt, cgit_query_grep,
+ cgit_query_search);
html("&nbsp;");
}
if ((commit = get_revision(&rev)) != NULL) {
cgit_log_link("[next]", NULL, NULL, cgit_query_head,
cgit_query_sha1, cgit_query_path,
- ofs + cnt);
+ ofs + cnt, cgit_query_grep,
+ cgit_query_search);
}
html("</div>");
}