From a608ff7ba371c2dddf9274de3a438bf74e2560f7 Mon Sep 17 00:00:00 2001 From: Lars Hjemli Date: Mon, 15 Sep 2008 22:40:02 +0200 Subject: ui-tag: show the taggers email If it's specified there's no point in hiding it. Signed-off-by: Lars Hjemli --- ui-tag.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'ui-tag.c') diff --git a/ui-tag.c b/ui-tag.c index b4db32e..3aea87d 100644 --- a/ui-tag.c +++ b/ui-tag.c @@ -63,6 +63,10 @@ void cgit_print_tag(char *revname) if (info->tagger) { html("Tagged by"); html_txt(info->tagger); + if (info->tagger_email) { + html(" "); + html_txt(info->tagger_email); + } html("\n"); } html("Tagged object"); -- cgit v1.1