MDL-60033 webservice_xmlrpc: extra escaping in the server URL

This commit is contained in:
Marina Glancy 2017-09-06 13:43:34 +08:00
parent b3cfb01316
commit 7814ae503b

View File

@ -83,7 +83,7 @@ class webservice_xmlrpc_client {
);
// Get the response.
$response = download_file_content($this->serverurl, $headers, $request);
$response = download_file_content($this->serverurl->out(false), $headers, $request);
// Decode the response.
$result = xmlrpc_decode($response);