diff options
author | Petr Baudis <pasky@suse.cz> | 2006-10-06 15:57:52 +0200 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-10-07 01:38:46 -0700 |
commit | 55ff35cb649e77f7633f9a30e9988ecad1371fe5 (patch) | |
tree | 99d265cbefca4825e9de24f1edffc53bc86cbff9 /gitweb | |
parent | 847abc0f2a8d57bf4c1f13e948995491b6bc6f58 (diff) | |
download | git-55ff35cb649e77f7633f9a30e9988ecad1371fe5.tar.gz |
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>
Diffstat (limited to 'gitweb')
-rwxr-xr-x | gitweb/gitweb.perl | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gitweb/gitweb.perl b/gitweb/gitweb.perl index 3cc0e965fc..276a84244b 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"; } |