On Fri, Feb 08, 2008 at 11:53:27AM -0200, Bruno Cesar Ribas wrote: > On Fri, Feb 08, 2008 at 02:55:33AM -0800, Jakub Narebski wrote: > > Bruno Ribas <ribas@xxxxxxxxxxxx> writes: > > > diff --git a/gitweb/gitweb.perl b/gitweb/gitweb.perl > index 8ef2735..e8a43b7 100755 > --- a/gitweb/gitweb.perl > +++ b/gitweb/gitweb.perl > @@ -1767,7 +1767,12 @@ sub git_get_project_owner { > if (exists $gitweb_project_owner->{$project}) { > $owner = $gitweb_project_owner->{$project}; > } > - if (!defined $owner) { > + > + if (!defined $owner){ > + $owner = git_get_project_config('owner'); > + } > + > + if (!$owner) { > $owner = get_file_owner("$projectroot/$project"); > } > I that last 3lines should be inside the block that we call git_get_project_config, don't you think? > > First, I think the empty lines added are not needed. > > I made those empty lines because original code had same empty lines above, I > just let it to have same pattern, but I can remove. Should I remove?! I'll > resend without it, and with $git_dir set. > > > > Second, git_get_project_config() subroutine _REQUIRES_ for $git_dir to > > be set. So you have to set $git_dir before checking repo config; then > > you can reuse $git_dir in checking file owner. > > > > -- > > Jakub Narebski > > Poland > > ShadeHawk on #git > > -- > Bruno Ribas - ribas@xxxxxxxxxxxx > http://web.inf.ufpr.br/ribas > C3SL: http://www.c3sl.ufpr.br > - > 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 -- Bruno Ribas - ribas@xxxxxxxxxxxx http://web.inf.ufpr.br/ribas C3SL: http://www.c3sl.ufpr.br - 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