diff options
author | Jakub Narebski <jnareb@gmail.com> | 2007-01-03 16:03:01 +0100 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2007-01-03 08:14:46 -0800 |
commit | 956259ee74df5695c55f51e9f93bbc217953a41a (patch) | |
tree | 3429188765b5d153a7e36b8ba8ae38d6266aaea9 /gitweb | |
parent | 825cee7b285d9c733e9aec03cf4362e8029ee1c1 (diff) | |
download | git-956259ee74df5695c55f51e9f93bbc217953a41a.tar.gz git-956259ee74df5695c55f51e9f93bbc217953a41a.tar.xz |
gitweb: Fix error in git_project_index subroutine
Instead of "$projectroot/$pr->{'path'}" to get the path to project
GIT_DIR, it was used "$projectroot/$project" which is valid only
for actions where project parameter is set, and 'project_index' is not
one of them.
Signed-off-by: Jakub Narebski <jnareb@gmail.com>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'gitweb')
-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 d845e91e2..7f548347a 100755 --- a/gitweb/gitweb.perl +++ b/gitweb/gitweb.perl @@ -2995,7 +2995,7 @@ sub git_project_index { foreach my $pr (@projects) { if (!exists $pr->{'owner'}) { - $pr->{'owner'} = get_file_owner("$projectroot/$project"); + $pr->{'owner'} = get_file_owner("$projectroot/$pr->{'path'}"); } my ($path, $owner) = ($pr->{'path'}, $pr->{'owner'}); |