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:
parent
de7d430280
commit
a044fcf1ae
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user