Set Content-Length to 0 for null body requests. Props Jalada. see #8605
git-svn-id: http://svn.automattic.com/wordpress/trunk@10211 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
f7db972796
commit
6587bdff8d
|
@ -242,6 +242,7 @@ class WP_Http {
|
|||
}
|
||||
|
||||
if ( is_null($r['body']) ) {
|
||||
$r['headers']['Content-Length'] = 0;
|
||||
$transports = WP_Http::_getTransport($r);
|
||||
} else {
|
||||
if ( is_array( $r['body'] ) || is_object( $r['body'] ) ) {
|
||||
|
|
Loading…
Reference in New Issue