diff options
author | Alexandre Julliard <julliard@winehq.org> | 2006-11-15 21:37:50 +0100 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-11-15 12:49:27 -0800 |
commit | faa1bbfdd2c7d2f6cf556ee3f0d54cad42b08c61 (patch) | |
tree | fad71f4463b74eddd1063efe707e76a495e8ab38 | |
parent | bf7e1472df65c948581e2fecd494eccfaa40b9d9 (diff) | |
download | git-faa1bbfdd2c7d2f6cf556ee3f0d54cad42b08c61.tar.gz git-faa1bbfdd2c7d2f6cf556ee3f0d54cad42b08c61.tar.xz |
gitweb: Put back shortlog instead of graphiclog in the project list.
Looks like a repo.or.cz-specific change slipped in.
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
-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 e54a29e4f..758759576 100755 --- a/gitweb/gitweb.perl +++ b/gitweb/gitweb.perl @@ -2454,7 +2454,7 @@ sub git_project_list_body { $pr->{'age_string'} . "</td>\n" . "<td class=\"link\">" . $cgi->a({-href => href(project=>$pr->{'path'}, action=>"summary")}, "summary") . " | " . - $cgi->a({-href => '/git-browser/by-commit.html?r='.$pr->{'path'}}, "graphiclog") . " | " . + $cgi->a({-href => href(project=>$pr->{'path'}, action=>"shortlog")}, "shortlog") . " | " . $cgi->a({-href => href(project=>$pr->{'path'}, action=>"log")}, "log") . " | " . $cgi->a({-href => href(project=>$pr->{'path'}, action=>"tree")}, "tree") . ($pr->{'forks'} ? " | " . $cgi->a({-href => href(project=>$pr->{'path'}, action=>"forks")}, "forks") : '') . |