Diffstat (limited to 'ui-commit.c')
| -rw-r--r-- | ui-commit.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/ui-commit.c b/ui-commit.c index 50e9e11..2679b59 100644 --- a/ui-commit.c +++ b/ui-commit.c @@ -139,6 +139,7 @@ void cgit_print_commit(char *hex) struct commitinfo *info; struct commit_list *p; unsigned char sha1[20]; + char *filename; char *tmp; int i; @@ -195,9 +196,11 @@ void cgit_print_commit(char *hex) html(")</td></tr>"); } if (cgit_repo->snapshots) { - html("<tr><th>download</th><td colspan='2' class='sha1'>"); - cgit_print_snapshot_links(cgit_query_repo,hex,cgit_repo->snapshots); - html("</td></tr>"); + htmlf("<tr><th>download</th><td colspan='2' class='sha1'><a href='"); + filename = fmt("%s-%s.zip", cgit_query_repo, hex); + html_attr(cgit_pageurl(cgit_query_repo, "snapshot", + fmt("id=%s&name=%s", hex, filename))); + htmlf("'>%s</a></td></tr>", filename); } html("</table>\n"); html("<div class='commit-subject'>"); |