diff options
author | Lars Hjemli <hjemli@gmail.com> | 2008-09-15 22:40:02 +0200 |
---|---|---|
committer | Lars Hjemli <hjemli@gmail.com> | 2008-09-15 22:40:02 +0200 |
commit | a608ff7ba371c2dddf9274de3a438bf74e2560f7 (patch) | |
tree | 123de14ef13a2ec6cb2890542396387e81954006 | |
parent | a8305a9543969206aa7cec03948c5a19950eedb9 (diff) | |
download | cgit-a608ff7ba371c2dddf9274de3a438bf74e2560f7.tar.gz cgit-a608ff7ba371c2dddf9274de3a438bf74e2560f7.tar.xz |
ui-tag: show the taggers email
If it's specified there's no point in hiding it.
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
-rw-r--r-- | ui-tag.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -63,6 +63,10 @@ void cgit_print_tag(char *revname) if (info->tagger) { html("<tr><td>Tagged by</td><td>"); html_txt(info->tagger); + if (info->tagger_email) { + html(" "); + html_txt(info->tagger_email); + } html("</td></tr>\n"); } html("<tr><td>Tagged object</td><td>"); |