You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the file ricord_client.php line 229 - xmlrpc_decode doesn't have the encoding parameter set correctly. Due to that strings are decoded into ISO-8859-1 and not UTF-8 (as that seems to be the default behavior for that function as documented in PHP Doc).
In the file ricord_client.php line 229 - xmlrpc_decode doesn't have the encoding parameter set correctly. Due to that strings are decoded into ISO-8859-1 and not UTF-8 (as that seems to be the default behavior for that function as documented in PHP Doc).
Suggested fix:
$result = xmlrpc_decode( $response , (array_key_exists('encoding', $this->_outputOptions)) ? $this->_outputOptions['encoding'] : null);
The text was updated successfully, but these errors were encountered: