mirror of
https://git.zx2c4.com/cgit
synced 2025-07-16 05:04:35 +02:00
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>
This commit is contained in:
parent
a8305a9543
commit
a608ff7ba3
1 changed files with 4 additions and 0 deletions
4
ui-tag.c
4
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>");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue