Check the headers for the transfer-encoding for chunked. Props santosj. see #4779

git-svn-id: http://svn.automattic.com/wordpress/trunk@8578 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan 2008-08-06 21:57:25 +00:00
parent ce1404129e
commit e6971c04f1
1 changed files with 1 additions and 1 deletions

View File

@ -797,7 +797,7 @@ class WP_Http_ExtHTTP {
list($theHeaders, $theBody) = explode("\r\n\r\n", $strResponse, 2);
$theHeaders = WP_Http::processHeaders($theHeaders);
if ( !empty($theBody) )
if ( ! empty( $theBody ) && isset( $theHeaders['headers']['transfer-encoding'] ) && 'chunked' == $theHeaders['headers']['transfer-encoding'] )
$theBody = http_chunked_decode($theBody);
$theResponse = array();