diff options
author | Lars Hjemli | 2008-09-15 22:40:02 +0200 |
---|---|---|
committer | Lars Hjemli | 2008-09-15 22:40:02 +0200 |
commit | a608ff7ba371c2dddf9274de3a438bf74e2560f7 (patch) | |
tree | 123de14ef13a2ec6cb2890542396387e81954006 /ui-tag.c | |
parent | a8305a9543969206aa7cec03948c5a19950eedb9 (diff) | |
download | cgit-a608ff7ba371c2dddf9274de3a438bf74e2560f7.tar.gz cgit-a608ff7ba371c2dddf9274de3a438bf74e2560f7.tar.bz2 cgit-a608ff7ba371c2dddf9274de3a438bf74e2560f7.zip |
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>
Diffstat (limited to 'ui-tag.c')
-rw-r--r-- | ui-tag.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -63,6 +63,10 @@ void cgit_print_tag(char *revname) | |||
63 | if (info->tagger) { | 63 | if (info->tagger) { |
64 | html("<tr><td>Tagged by</td><td>"); | 64 | html("<tr><td>Tagged by</td><td>"); |
65 | html_txt(info->tagger); | 65 | html_txt(info->tagger); |
66 | if (info->tagger_email) { | ||
67 | html(" "); | ||
68 | html_txt(info->tagger_email); | ||
69 | } | ||
66 | html("</td></tr>\n"); | 70 | html("</td></tr>\n"); |
67 | } | 71 | } |
68 | html("<tr><td>Tagged object</td><td>"); | 72 | html("<tr><td>Tagged object</td><td>"); |