diff options
author | Ivan Kohler <ivan@freeside.biz> | 2015-10-05 14:43:30 -0700 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2015-10-05 14:43:30 -0700 |
commit | a2dbfca9b10917eba6e8ec2231eb2cc764b886b2 (patch) | |
tree | 9f587408710522d68c1d71bd460f1c154f865084 | |
parent | 5b27ffc34056dbd340f83db34f00defc7cccae24 (diff) |
fix UTF-8 in ClientAPI, RT#38254
-rw-r--r-- | FS/FS/ClientAPI_XMLRPC.pm | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/FS/FS/ClientAPI_XMLRPC.pm b/FS/FS/ClientAPI_XMLRPC.pm index 593440232..96b4b7135 100644 --- a/FS/FS/ClientAPI_XMLRPC.pm +++ b/FS/FS/ClientAPI_XMLRPC.pm @@ -30,6 +30,7 @@ L<FS::SelfService::XMLRPC>, L<FS::SelfService> use strict; use vars qw($DEBUG $AUTOLOAD); +use Encode; use XMLRPC::Lite; # for XMLRPC::Data use FS::ClientAPI; @@ -67,12 +68,17 @@ sub AUTOLOAD { shift; #discard package name; + #$call = "FS::SelfService::$call"; #no strict 'refs'; #&{$call}(@_); #FS::ClientAPI->dispatch($autoload->{$call}, @_); - my $return = FS::ClientAPI->dispatch($autoload->{$call}, { @_ } ); + my %hash = @_; + #XXX doesn't handle multi-level data structs + $hash{$_} = decode(utf8=>$hash{$_}) foreach keys %hash; + + my $return = FS::ClientAPI->dispatch($autoload->{$call}, \%hash ); if ( exists($typefix{$call}) ) { my $typefix = $typefix{$call}; @@ -85,7 +91,7 @@ sub AUTOLOAD { $return; - }else{ + } else { die "No such procedure: $call"; } } |