Hi,
I'm using ripcord to get data from Odoo. When sending some request to Odoo, I get the response in ASCII charset, but the request was defined as UTF-8.
In file ripcord_client.php on line 229, there is missing a second parameter for xmlrpc_decode().
Instead of
$result = xmlrpc_decode( $response );
there should be something like this
$result = xmlrpc_decode( $response, $this->_outputOptions['encoding'] );
Hi,
I'm using ripcord to get data from Odoo. When sending some request to Odoo, I get the response in ASCII charset, but the request was defined as UTF-8.
In file
ripcord_client.phpon line 229, there is missing a second parameter forxmlrpc_decode().Instead of
$result = xmlrpc_decode( $response );there should be something like this
$result = xmlrpc_decode( $response, $this->_outputOptions['encoding'] );