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