about summary refs log tree commit diff stats
path: root/ui-log.c
diff options
context:
space:
mode:
authorJason A. Donenfeld2014-01-13 16:24:40 +0100
committerJason A. Donenfeld2014-01-14 02:00:07 +0100
commit786609bd36c07b85dbf905fc8c36eba7132122d7 (patch)
tree03d3a49c01b89e7122bdde4ad088fc225a819e7b /ui-log.c
parentfilter: add gravatar scripts (diff)
downloadcgit-786609bd36c07b85dbf905fc8c36eba7132122d7.tar.gz
cgit-786609bd36c07b85dbf905fc8c36eba7132122d7.zip
filter: add page source to email filter
Since the email filter is called from lots of places, the script might
benefit from knowing the origin. That way it can modify its contents
and/or size depending.

Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to 'ui-log.c')
-rw-r--r--ui-log.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui-log.c b/ui-log.c index 957d887..499534c 100644 --- a/ui-log.c +++ b/ui-log.c
@@ -168,7 +168,7 @@ static void print_commit(struct commit *commit, struct rev_info *revs)
168 sha1_to_hex(commit->object.sha1), ctx.qry.vpath, 0); 168 sha1_to_hex(commit->object.sha1), ctx.qry.vpath, 0);
169 show_commit_decorations(commit); 169 show_commit_decorations(commit);
170 html("</td><td>"); 170 html("</td><td>");
171 cgit_open_filter(ctx.repo->email_filter, info->author_email); 171 cgit_open_filter(ctx.repo->email_filter, info->author_email, "log");
172 html_txt(info->author); 172 html_txt(info->author);
173 cgit_close_filter(ctx.repo->email_filter); 173 cgit_close_filter(ctx.repo->email_filter);
174 174