diff options
author | Junio C Hamano <junkio@cox.net> | 2007-03-23 23:29:37 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2007-03-23 23:29:37 -0700 |
commit | b08bbae7e1676e5a47fa9054e268ff14ee819a3a (patch) | |
tree | 47a39ed69d79a060825f648d810c868eed6f89bc | |
parent | Documentation: bisect: make a comment fit better in the man page. (diff) | |
parent | gitweb: Fix "next" link in commit view (diff) | |
download | tgif-b08bbae7e1676e5a47fa9054e268ff14ee819a3a.tar.xz |
Merge branch 'maint'
* maint:
gitweb: Fix "next" link in commit view
-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 27b5970bca..5214050a88 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 ) . |