]> git.proxmox.com Git - pve-access-control.git/commitdiff
use new decode_utf8_parameters() to decode CGI parameters
authorDietmar Maurer <dietmar@proxmox.com>
Thu, 19 Jan 2012 13:06:41 +0000 (14:06 +0100)
committerDietmar Maurer <dietmar@proxmox.com>
Thu, 19 Jan 2012 13:06:41 +0000 (14:06 +0100)
PVE/RPCEnvironment.pm

index 19276badcadd46c95c24935186493f65a9612adb..d92320c6f8439aa756127bd2c21e74df7bd65d4e 100644 (file)
@@ -239,7 +239,7 @@ sub parse_params {
        }
        $self->{cgi} = $cgi;
        my $params = $cgi->Vars();
-       return $params;
+       return PVE::Tools::decode_utf8_parameters($params);
     } elsif ($self->{params}) {
        return $self->{params};
     } else {