X-Git-Url: https://gitweb.ps.run/ps-cgit/blobdiff_plain/e5ed227ef0da561e2bde8646ec816842392377ee..d14d77fe95c3b6224b40df9b101dded0deea913c:/ui-log.c
diff --git a/ui-log.c b/ui-log.c
index a41d2b2..a39474b 100644
--- a/ui-log.c
+++ b/ui-log.c
@@ -37,7 +37,7 @@ void print_commit(struct commit *commit)
html("
| ");
cgit_print_age(commit->date, TM_WEEK * 2, FMT_SHORTDATE);
html(" | ");
- cgit_commit_link(info->subject, NULL, NULL, cgit_query_head,
+ cgit_commit_link(info->subject, NULL, NULL, ctx.qry.head,
sha1_to_hex(commit->object.sha1));
if (cgit_repo->enable_log_filecount) {
files = 0;
@@ -67,7 +67,7 @@ void cgit_print_log(const char *tip, int ofs, int cnt, char *grep, char *pattern
int i;
if (!tip)
- argv[1] = cgit_query_head;
+ argv[1] = ctx.qry.head;
if (grep && pattern && (!strcmp(grep, "grep") ||
!strcmp(grep, "author") ||
@@ -123,17 +123,17 @@ void cgit_print_log(const char *tip, int ofs, int cnt, char *grep, char *pattern
if (pager) {
html("");
}
|