summaryrefslogtreecommitdiff
path: root/gitweb
diff options
context:
space:
mode:
authorAlexandre Julliard <julliard@winehq.org>2006-11-15 20:37:50 (GMT)
committerJunio C Hamano <junkio@cox.net>2006-11-15 20:49:27 (GMT)
commitfaa1bbfdd2c7d2f6cf556ee3f0d54cad42b08c61 (patch)
treefad71f4463b74eddd1063efe707e76a495e8ab38 /gitweb
parentbf7e1472df65c948581e2fecd494eccfaa40b9d9 (diff)
downloadgit-faa1bbfdd2c7d2f6cf556ee3f0d54cad42b08c61.zip
git-faa1bbfdd2c7d2f6cf556ee3f0d54cad42b08c61.tar.gz
git-faa1bbfdd2c7d2f6cf556ee3f0d54cad42b08c61.tar.bz2
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>
Diffstat (limited to 'gitweb')
-rwxr-xr-xgitweb/gitweb.perl2
1 files changed, 1 insertions, 1 deletions
diff --git a/gitweb/gitweb.perl b/gitweb/gitweb.perl
index e54a29e..7587595 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") : '') .