Prevent setting owner to an empty value if it is not specified in projects.list file. Otherwise it stops retrieving information about the owner from other files. Signed-off-by: Kacper Kornet <draenog@xxxxxxxxxxxxx> --- The change is necessary due to 14b289bdf7c31176dc525cbe81173ec636598782: "gitweb: Refactor checking if part of project info need filling", which replaced !defined with !exists in check if owner is set. gitweb/gitweb.perl | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/gitweb/gitweb.perl b/gitweb/gitweb.perl index 3aeeb8b..adb0caa 100755 --- a/gitweb/gitweb.perl +++ b/gitweb/gitweb.perl @@ -2906,9 +2906,11 @@ sub git_get_projects_list { } if (check_export_ok("$projectroot/$path")) { my $pr = { - path => $path, - owner => to_utf8($owner), + path => $path }; + if ($owner) { + $pr->{'owner'} = to_utf8($owner); + } push @list, $pr; } } -- 1.7.10 -- Kacper Kornet -- 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