We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6a89897 + 75e0dff commit 070d527Copy full SHA for 070d527
1 file changed
gitweb/gitweb.perl
@@ -3012,9 +3012,11 @@ sub git_get_projects_list {
3012
}
3013
if (check_export_ok("$projectroot/$path")) {
3014
my $pr = {
3015
- path => $path,
3016
- owner => to_utf8($owner),
+ path => $path
3017
};
+ if ($owner) {
3018
+ $pr->{'owner'} = to_utf8($owner);
3019
+ }
3020
push @list, $pr;
3021
3022
0 commit comments