WP_HTTP: Fix a variable typo in [25153] See #23463

git-svn-id: https://develop.svn.wordpress.org/trunk@25155 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Dion Hulse 2013-08-28 07:29:09 +00:00
parent de7d430280
commit a044fcf1ae
1 changed files with 1 additions and 1 deletions

View File

@ -479,7 +479,7 @@ class WP_Http {
$body_original = $body; // We'll be altering $body, so need a backup in case of error
while ( true ) {
$has_chunk = (bool) preg_match( '/^([0-9a-f]+)[^\r\n]*\r\n/i', $body_copy, $match );
$has_chunk = (bool) preg_match( '/^([0-9a-f]+)[^\r\n]*\r\n/i', $body, $match );
if ( ! $has_chunk || empty( $match[1] ) )
return $body_original;