When viewing a gitweb repository commit log, the "next" link at the top of the page works as expected, the "next" link on the bottom of the page has a=search instead of a=log and thus fails to get you to the next page. This commit replaces the bottom "next" link with the same links as shown at the top of the page. The bad link was reported by Kai Blin through http://bugs.debian.org/481902 Signed-off-by: Gerrit Pape <pape@xxxxxxxxxxx> --- gitweb/gitweb.perl | 7 +------ 1 files changed, 1 insertions(+), 6 deletions(-) diff --git a/gitweb/gitweb.perl b/gitweb/gitweb.perl index 57a1905..f7b9ac2 100755 --- a/gitweb/gitweb.perl +++ b/gitweb/gitweb.perl @@ -4703,12 +4703,7 @@ sub git_log { git_print_log($co{'comment'}, -final_empty_line=> 1); print "</div>\n"; } - if ($#commitlist >= 100) { - print "<div class=\"page_nav\">\n"; - print $cgi->a({-href => href(-replay=>1, page=>$page+1), - -accesskey => "n", -title => "Alt-n"}, "next"); - print "</div>\n"; - } + git_print_page_nav('log','', $hash,undef,undef, $paging_nav); git_footer_html(); } -- 1.5.5.2 -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html