]> Lady’s Gitweb - Gitweb/commitdiff
gitweb: Fix "next" link in commit view
authorJakub Narebski <redacted>
Fri, 23 Mar 2007 20:04:31 +0000 (21:04 +0100)
committerLady <redacted>
Mon, 6 Apr 2026 04:07:11 +0000 (00:07 -0400)
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 <redacted>
Signed-off-by: Junio C Hamano <redacted>
gitweb.perl

index 1d15eeedb2a6f37afd7893e06b502f33d67cecb1edf5b4c45c6667cd17cd4994..5282ba298618c260c73a5a4ea6b7aa4bf851b208491d24d59b3d047a97a9bf71 100755 (executable)
@@ -3720,7 +3720,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 ) .
This page took 0.15743 seconds and 4 git commands to generate.