diff options
author | Luben Tuikov <ltuikov@yahoo.com> | 2006-09-28 16:50:09 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-09-28 18:57:00 -0700 |
commit | ba6ef81017a84c2fce822b7ceba74f67dea6919e (patch) | |
tree | 99357ec4e91447ef0a92e27ba3798cf655ca13ff /gitweb | |
parent | de9272f4bd029d0f331d154b59e64d160e6d1d14 (diff) | |
download | git-ba6ef81017a84c2fce822b7ceba74f67dea6919e.tar.gz git-ba6ef81017a84c2fce822b7ceba74f67dea6919e.tar.xz |
gitweb: Add snapshot to shortlog
Add snapshot to each commit-row of shortlog.
Signed-off-by: Luben Tuikov <ltuikov@yahoo.com>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'gitweb')
-rwxr-xr-x | gitweb/gitweb.perl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gitweb/gitweb.perl b/gitweb/gitweb.perl index 97b30aa5c..8ad04570a 100755 --- a/gitweb/gitweb.perl +++ b/gitweb/gitweb.perl @@ -2021,7 +2021,8 @@ 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=>"tree", hash=>$commit, hash_base=>$commit)}, "tree") . " | " . + $cgi->a({-href => href(action=>"snapshot", hash=>$commit)}, "snapshot"); print "</td>\n" . "</tr>\n"; } |