We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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().
ripcord_client.php
xmlrpc_decode()
Instead of
$result = xmlrpc_decode( $response );
there should be something like this
$result = xmlrpc_decode( $response, $this->_outputOptions['encoding'] );
The text was updated successfully, but these errors were encountered:
I created a fork and a pull request for this. Doesnt looks like that this project is alive?
Sorry, something went wrong.
No branches or pull requests
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 forxmlrpc_decode()
.Instead of
$result = xmlrpc_decode( $response );
there should be something like this
$result = xmlrpc_decode( $response, $this->_outputOptions['encoding'] );
The text was updated successfully, but these errors were encountered: