about summary refs log tree commit diff stats
path: root/ui-tag.c
diff options
context:
space:
mode:
authorLars Hjemli2008-09-15 22:41:25 +0200
committerLars Hjemli2008-09-15 22:41:25 +0200
commita30453a5d3f6db4d6e055da2112343e054e7e7d5 (patch)
treee8713318ee4c1d605eb02ae469cf22f0d1cc4df1 /ui-tag.c
parentMerge branch 'ew/http_host' (diff)
parentui-tag: show the taggers email (diff)
downloadcgit-a30453a5d3f6db4d6e055da2112343e054e7e7d5.tar.gz
cgit-a30453a5d3f6db4d6e055da2112343e054e7e7d5.zip
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.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/ui-tag.c b/ui-tag.c index b4db32e..3aea87d 100644 --- a/ui-tag.c +++ b/ui-tag.c
@@ -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>");