diff options
author | Lars Hjemli <hjemli@gmail.com> | 2008-09-15 22:41:25 +0200 |
---|---|---|
committer | Lars Hjemli <hjemli@gmail.com> | 2008-09-15 22:41:25 +0200 |
commit | a30453a5d3f6db4d6e055da2112343e054e7e7d5 (patch) | |
tree | e8713318ee4c1d605eb02ae469cf22f0d1cc4df1 /ui-tag.c | |
parent | 91fd1eca07f9e48109e8acebc0a92dc4b12ecb50 (diff) | |
parent | a608ff7ba371c2dddf9274de3a438bf74e2560f7 (diff) | |
download | cgit-a30453a5d3f6db4d6e055da2112343e054e7e7d5.tar.gz cgit-a30453a5d3f6db4d6e055da2112343e054e7e7d5.tar.bz2 |
Merge branch 'lh/parsing'
* lh/parsing:
ui-tag: show the taggers email
parsing.c: be prepared for unexpected content in commit/tag objects
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) 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>"); |