diff options
author | Andrey Andreev <narf@devilix.net> | 2015-03-26 20:10:49 +0100 |
---|---|---|
committer | Andrey Andreev <narf@devilix.net> | 2015-03-26 20:10:49 +0100 |
commit | 7abc08acbeec7437b72d44e5e1a3500f7f6ac766 (patch) | |
tree | 1759b413bbf8d61cb93b8968b6ae01e3a2607e26 /system | |
parent | 068ab206d84bf1668832988932dc61cfb3103bf8 (diff) |
Fix #3703
Diffstat (limited to 'system')
-rw-r--r-- | system/libraries/Xmlrpcs.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/libraries/Xmlrpcs.php b/system/libraries/Xmlrpcs.php index c2768445e..00d1feca6 100644 --- a/system/libraries/Xmlrpcs.php +++ b/system/libraries/Xmlrpcs.php @@ -223,7 +223,7 @@ class CI_Xmlrpcs extends CI_Xmlrpc { $CI =& get_instance(); if ($CI->input->method() === 'post') { - $data = http_build_query($CI->input->input_stream(NULL, FALSE)); + $data = $CI->input->raw_input_stream; } } |