From: Lars Hjemli Date: Mon, 15 Sep 2008 20:40:02 +0000 (+0200) Subject: ui-tag: show the taggers email X-Git-Url: https://gitweb.ps.run/ps-cgit/commitdiff_plain/a608ff7ba371c2dddf9274de3a438bf74e2560f7 ui-tag: show the taggers email If it's specified there's no point in hiding it. Signed-off-by: Lars Hjemli --- 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");