From eb3daa5799bd8c995a0cc324ab24cba33b740055 Mon Sep 17 00:00:00 2001 From: Ryan Boren Date: Wed, 6 Aug 2008 21:57:25 +0000 Subject: [PATCH] Check the headers for the transfer-encoding for chunked. Props santosj. see #4779 git-svn-id: https://develop.svn.wordpress.org/trunk@8578 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/http.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/http.php b/wp-includes/http.php index 1a4b408036..c64d701083 100644 --- a/wp-includes/http.php +++ b/wp-includes/http.php @@ -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();