Remove unused variable. Props hakre. fixes #10765

git-svn-id: http://svn.automattic.com/wordpress/trunk@12367 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan 2009-12-10 22:55:06 +00:00
parent 19ff06a6ec
commit fee3cd75a3
1 changed files with 0 additions and 2 deletions

View File

@ -1352,8 +1352,6 @@ class WP_Http_Curl {
$theResponse = curl_exec( $handle );
if ( !empty($theResponse) ) {
$parts = explode("\r\n\r\n", $theResponse);
$headerLength = curl_getinfo($handle, CURLINFO_HEADER_SIZE);
$theHeaders = trim( substr($theResponse, 0, $headerLength) );
$theBody = substr( $theResponse, $headerLength );