aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPetr Baudis <pasky@suse.cz>2006-10-06 15:57:52 +0200
committerJunio C Hamano <junkio@cox.net>2006-10-07 01:38:46 -0700
commit55ff35cb649e77f7633f9a30e9988ecad1371fe5 (patch)
tree99d265cbefca4825e9de24f1edffc53bc86cbff9
parent847abc0f2a8d57bf4c1f13e948995491b6bc6f58 (diff)
downloadgit-55ff35cb649e77f7633f9a30e9988ecad1371fe5.tar.gz
git-55ff35cb649e77f7633f9a30e9988ecad1371fe5.tar.xz
Show snapshot link in shortlog only if have_snapsho
Signed-off-by: Petr Baudis <pasky@suse.cz> Signed-off-by: Junio C Hamano <junkio@cox.net>
-rwxr-xr-xgitweb/gitweb.perl6
1 files changed, 4 insertions, 2 deletions
diff --git a/gitweb/gitweb.perl b/gitweb/gitweb.perl
index 3cc0e965f..276a84244 100755
--- a/gitweb/gitweb.perl
+++ b/gitweb/gitweb.perl
@@ -2033,8 +2033,10 @@ sub git_shortlog_body {
print "</td>\n" .
"<td class=\"link\">" .
$cgi->a({-href => href(action=>"commitdiff", hash=>$commit)}, "commitdiff") . " | " .
- $cgi->a({-href => href(action=>"tree", hash=>$commit, hash_base=>$commit)}, "tree") . " | " .
- $cgi->a({-href => href(action=>"snapshot", hash=>$commit)}, "snapshot");
+ $cgi->a({-href => href(action=>"tree", hash=>$commit, hash_base=>$commit)}, "tree");
+ if (gitweb_have_snapshot()) {
+ print " | " . $cgi->a({-href => href(action=>"snapshot", hash=>$commit)}, "snapshot");
+ }
print "</td>\n" .
"</tr>\n";
}