commit 10eb9edd14fee883c9e62c99efc357a1bcae86ce
parent 926eef34873d60b34bc7ad43d4925dfcc1fca3de
Author: mjkloeckner <martin.cachari@gmail.com>
Date: Thu, 5 Jan 2023 16:41:35 -0300
fix double log-summary print
Diffstat:
1 file changed, 1 insertion(+), 5 deletions(-)
diff --git a/stagit.c b/stagit.c
@@ -775,13 +775,9 @@ writelogline(FILE *fp, struct commitinfo *ci)
fputs("<td id=\"log-date\">", fp);
fprintf(fp, "<a href=\"%scommit/%s.html\">", relpath, ci->oid);
- xmlencode(fp, ci->summary, strlen(ci->summary));
- fputs("\">",fp);
-
if (ci->author)
printtimeshort(fp, &(ci->author->when));
-
- fputs("</a></td>", fp);
+ fputs("</a></td>",fp);
fputs("<td id=\"log-summary\">", fp);
if (ci->summary) {