diff options
author | Jakub Narebski <jnareb@gmail.com> | 2007-03-23 21:04:31 +0100 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2007-03-23 14:54:52 -0700 |
commit | f9308a182e220c97cdbf90ee8de2ce21980cb7e9 (patch) | |
tree | 1a6d6240005826e988d72be046f0a642ddf25865 /gitweb/gitweb.perl | |
parent | Documentation/pack-format.txt: Clear up description of types. (diff) | |
download | tgif-f9308a182e220c97cdbf90ee8de2ce21980cb7e9.tar.xz |
gitweb: Fix "next" link in commit view
Fix copy'n'paste error in commit c9d193df which caused that "next"
link for merge commits in "commit" view
(merge: _commit_ _commit_ ...)
was to "commitdiff" view instead of being to "commit" view.
Signed-off-by: Jakub Narebski <jnareb@gmail.com>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'gitweb/gitweb.perl')
-rwxr-xr-x | gitweb/gitweb.perl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gitweb/gitweb.perl b/gitweb/gitweb.perl index 653ca3cc60..ea39d7e98b 100755 --- a/gitweb/gitweb.perl +++ b/gitweb/gitweb.perl @@ -3719,7 +3719,7 @@ sub git_commit { $formats_nav .= '(merge: ' . join(' ', map { - $cgi->a({-href => href(action=>"commitdiff", + $cgi->a({-href => href(action=>"commit", hash=>$_)}, esc_html(substr($_, 0, 7))); } @$parents ) . |