handle utf8 characters from /etc/passwd
This commit is contained in:
parent
2326acfa95
commit
281bf0cf4e
@ -787,7 +787,7 @@ sub get_file_owner {
|
|||||||
}
|
}
|
||||||
my $owner = $gcos;
|
my $owner = $gcos;
|
||||||
$owner =~ s/[,;].*$//;
|
$owner =~ s/[,;].*$//;
|
||||||
return $owner;
|
return decode("utf8", $owner, Encode::FB_DEFAULT);
|
||||||
}
|
}
|
||||||
|
|
||||||
sub git_read_projects {
|
sub git_read_projects {
|
||||||
@ -823,7 +823,7 @@ sub git_read_projects {
|
|||||||
if (-e "$projectroot/$path/HEAD") {
|
if (-e "$projectroot/$path/HEAD") {
|
||||||
my $pr = {
|
my $pr = {
|
||||||
path => $path,
|
path => $path,
|
||||||
owner => $owner,
|
owner => decode("utf8", $owner, Encode::FB_DEFAULT),
|
||||||
};
|
};
|
||||||
push @list, $pr
|
push @list, $pr
|
||||||
}
|
}
|
||||||
@ -1025,7 +1025,7 @@ sub git_summary {
|
|||||||
$pr = unescape($pr);
|
$pr = unescape($pr);
|
||||||
$ow = unescape($ow);
|
$ow = unescape($ow);
|
||||||
if ($pr eq $project) {
|
if ($pr eq $project) {
|
||||||
$owner = $ow;
|
$owner = decode("utf8", $ow, Encode::FB_DEFAULT);
|
||||||
last;
|
last;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user