Use of $HTTP_RAW_POST_DATA is deprecated. Get data from php://input instead.

(Fixes Forge bug #444)


git-svn-id: http://forge.opensimulator.org/svn/osprofile/trunk@108 19860011-0018-435d-96ae-4a7b0aaa3128
This commit is contained in:
kcozens
2012-12-24 18:47:50 +00:00
parent 461714a782
commit 66febed3a2
+1 -1
View File
@@ -684,7 +684,7 @@ function user_preferences_update($method_name, $params, $app_data)
# Process the request
#
$request_xml = $HTTP_RAW_POST_DATA;
$request_xml = file_get_contents("php://input");
xmlrpc_server_call_method($xmlrpc_server, $request_xml, '');
xmlrpc_server_destroy($xmlrpc_server);