diff --git a/lib/WebGUI/Session/Form.pm b/lib/WebGUI/Session/Form.pm index f0625111e..1033efcbf 100644 --- a/lib/WebGUI/Session/Form.pm +++ b/lib/WebGUI/Session/Form.pm @@ -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]; }