diff options
author | Luben Tuikov <ltuikov@yahoo.com> | 2006-09-28 16:48:40 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-09-28 18:52:36 -0700 |
commit | d1d866e9b8d5a6f0dbe490ba3467440bbf87feaf (patch) | |
tree | f760ec2649925a08458d374b4bf80c4fed2b5be5 /gitweb | |
parent | 6dd36acd32476a474a5b7d2ad309a82c84513abe (diff) | |
download | git-d1d866e9b8d5a6f0dbe490ba3467440bbf87feaf.tar.gz git-d1d866e9b8d5a6f0dbe490ba3467440bbf87feaf.tar.xz |
gitweb: Remove redundant "commit" link from shortlog
Remove the redundant "commit" link from shortlog.
It can be had by simply clicking on the entry title
of the row.
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 | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/gitweb/gitweb.perl b/gitweb/gitweb.perl index 9550bd74e..5ef4d07ca 100755 --- a/gitweb/gitweb.perl +++ b/gitweb/gitweb.perl @@ -2013,7 +2013,6 @@ sub git_shortlog_body { href(action=>"commit", hash=>$commit), $ref); print "</td>\n" . "<td class=\"link\">" . - $cgi->a({-href => href(action=>"commit", hash=>$commit)}, "commit") . " | " . $cgi->a({-href => href(action=>"commitdiff", hash=>$commit)}, "commitdiff") . " | " . $cgi->a({-href => href(action=>"tree", hash=>$commit, hash_base=>$commit)}, "tree"); print "</td>\n" . |