aboutsummaryrefslogtreecommitdiff
path: root/ui-commit.c
diff options
context:
space:
mode:
authorMichael Krelin <hacker@klever.net>2007-07-21 18:00:53 +0200
committerMichael Krelin <hacker@klever.net>2007-07-21 18:00:53 +0200
commitdc3c9b5bc48779f37f2fbcbadce8865eaf4a360e (patch)
treee42607f85bfb3ca33dff761a3966c502cdd6868e /ui-commit.c
parent97c025ae8ecf9764fd6996c81c51c3de4adb837c (diff)
downloadcgit-dc3c9b5bc48779f37f2fbcbadce8865eaf4a360e.tar.gz
cgit-dc3c9b5bc48779f37f2fbcbadce8865eaf4a360e.tar.bz2
allow selective enabling of snapshots
snapshot configuration parameter now can be a space/slash/comma/colon/semicolon/pipe-separated list of snaphot suffixes as listed in ui-snapshot.c Signed-off-by: Michael Krelin <hacker@klever.net>
Diffstat (limited to 'ui-commit.c')
-rw-r--r--ui-commit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui-commit.c b/ui-commit.c
index bf5e6dc..50e9e11 100644
--- a/ui-commit.c
+++ b/ui-commit.c
@@ -196,7 +196,7 @@ void cgit_print_commit(char *hex)
}
if (cgit_repo->snapshots) {
html("<tr><th>download</th><td colspan='2' class='sha1'>");
- cgit_print_snapshot_links(cgit_query_repo,hex);
+ cgit_print_snapshot_links(cgit_query_repo,hex,cgit_repo->snapshots);
html("</td></tr>");
}
html("</table>\n");