the repository which powers this website
ui-tag: show the taggers email
If it's specified there's no point in hiding it. Signed-off-by: Lars Hjemli <[email protected]>
Lars Hjemli 2008-09-16
parent a8305a9 · commit a608ff7
-rw-r--r--ui-tag.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/ui-tag.c b/ui-tag.c
index b4db32e3..3aea87d8 100644
--- a/ui-tag.c
+++ b/ui-tag.c
@@ -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>");