mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-03-31 18:54:29 +00:00
Unused var fixes. Props DD32. see #8220
git-svn-id: https://develop.svn.wordpress.org/trunk@9716 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -411,7 +411,7 @@ class WP_Http {
|
||||
$length = hexdec( $match[1] );
|
||||
$chunkLength = strlen( $match[0] );
|
||||
|
||||
$strBody = substr($body, strlen( $match[0] ), $length);
|
||||
$strBody = substr($body, $chunkLength, $length);
|
||||
$parsedBody .= $strBody;
|
||||
|
||||
$body = ltrim(str_replace(array($match[0], $strBody), '', $body), "\n");
|
||||
|
||||
Reference in New Issue
Block a user