Core/Rpc: XmlRpc now has text/xml ContentType (instead of application/xml)

git-svn-id: svn://ultimatepp.org/upp/trunk@9486 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2016-02-17 12:30:42 +00:00
parent ae903e593b
commit ea68687663

View file

@ -116,7 +116,7 @@ RpcGet RpcRequest::Execute()
request = ~json;
}
else {
ContentType("application/xml");
ContentType("text/xml");
request = XmlHeader();
request << XmlTag("methodCall")(XmlTag("methodName")(method) + FormatXmlRpcParams(data.out));
}