summaryrefslogtreecommitdiff
path: root/ui-tag.c
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2014-01-13 15:24:40 (GMT)
committerJason A. Donenfeld <Jason@zx2c4.com>2014-01-14 01:00:07 (GMT)
commit786609bd36c07b85dbf905fc8c36eba7132122d7 (patch)
tree03d3a49c01b89e7122bdde4ad088fc225a819e7b /ui-tag.c
parente942a1622bddf3338096393c3906c1adc871d198 (diff)
downloadcgit-786609bd36c07b85dbf905fc8c36eba7132122d7.zip
cgit-786609bd36c07b85dbf905fc8c36eba7132122d7.tar.gz
cgit-786609bd36c07b85dbf905fc8c36eba7132122d7.tar.bz2
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-tag.c')
-rw-r--r--ui-tag.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui-tag.c b/ui-tag.c
index adbdb90..c1d1738 100644
--- a/ui-tag.c
+++ b/ui-tag.c
@@ -77,7 +77,7 @@ void cgit_print_tag(char *revname)
}
if (info->tagger) {
html("<tr><td>tagged by</td><td>");
- cgit_open_filter(ctx.repo->email_filter, info->tagger_email);
+ cgit_open_filter(ctx.repo->email_filter, info->tagger_email, "tag");
html_txt(info->tagger);
if (info->tagger_email && !ctx.cfg.noplainemail) {
html(" ");