Fix for PHP version 5.2.2 where $HTTP_RAW_POST_DATA isn't set. fixes #4248
git-svn-id: http://svn.automattic.com/wordpress/trunk@5445 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
e6c189902c
commit
f432ed648a
|
@ -5,6 +5,12 @@ define('XMLRPC_REQUEST', true);
|
||||||
// Some browser-embedded clients send cookies. We don't want them.
|
// Some browser-embedded clients send cookies. We don't want them.
|
||||||
$_COOKIE = array();
|
$_COOKIE = array();
|
||||||
|
|
||||||
|
// A bug in PHP < 5.2.2 makes $HTTP_RAW_POST_DATA not set by default,
|
||||||
|
// but we can do it ourself.
|
||||||
|
if ( !isset( $HTTP_RAW_POST_DATA ) ) {
|
||||||
|
$HTTP_RAW_POST_DATA = file_get_contents( 'php://input' );
|
||||||
|
}
|
||||||
|
|
||||||
# fix for mozBlog and other cases where '<?xml' isn't on the very first line
|
# fix for mozBlog and other cases where '<?xml' isn't on the very first line
|
||||||
if ( isset($HTTP_RAW_POST_DATA) )
|
if ( isset($HTTP_RAW_POST_DATA) )
|
||||||
$HTTP_RAW_POST_DATA = trim($HTTP_RAW_POST_DATA);
|
$HTTP_RAW_POST_DATA = trim($HTTP_RAW_POST_DATA);
|
||||||
|
|
Loading…
Reference in New Issue