Removed explict utf8 decode from paramHashRef
This commit is contained in:
parent
8214390407
commit
1c8ee0b954
1 changed files with 0 additions and 1 deletions
|
|
@ -98,7 +98,6 @@ sub paramsHashRef {
|
||||||
my %hash;
|
my %hash;
|
||||||
tie %hash, "Tie::IxHash";
|
tie %hash, "Tie::IxHash";
|
||||||
foreach ($self->param) {
|
foreach ($self->param) {
|
||||||
$_ = Encode::decode_utf8($_);
|
|
||||||
my @arr = $self->process($_);
|
my @arr = $self->process($_);
|
||||||
$hash{$_} = (scalar(@arr) > 1)?\@arr:$arr[0];
|
$hash{$_} = (scalar(@arr) > 1)?\@arr:$arr[0];
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue