diff options
author | Luben Tuikov <ltuikov@yahoo.com> | 2006-09-28 17:20:23 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-09-28 19:03:28 -0700 |
commit | e46b3c027e7953bccbfe26910ff8c2d43225a17c (patch) | |
tree | 1bd2cebeac902a95217e57a2a32a50a960dee608 | |
parent | a2a3bf7b2baf0ff64c5b5ffc78d54be82d9967f1 (diff) | |
download | git-e46b3c027e7953bccbfe26910ff8c2d43225a17c.tar.gz git-e46b3c027e7953bccbfe26910ff8c2d43225a17c.tar.xz |
gitweb: Remove redundant "commit" from history
Remove redundant "commit" from history -- it can be had
by clicking on the title of the commit. This commit
makes visualization consistent with shortlog, log, etc.
Signed-off-by: Luben Tuikov <ltuikov@yahoo.com>
Signed-off-by: Junio C Hamano <junkio@cox.net>
-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 a99e116a4..caaa371d0 100755 --- a/gitweb/gitweb.perl +++ b/gitweb/gitweb.perl @@ -2071,7 +2071,6 @@ sub git_history_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=>$ftype, hash_base=>$commit, file_name=>$file_name)}, $ftype); |