MDL-60033 webservice_xmlrpc: extra escaping in the server URL

This commit is contained in:
Marina Glancy
2017-09-06 13:44:06 +08:00
parent 3393db1467
commit def68f84a0
+1 -1
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);