From 907ba1cfce6a536ad88c532685276b64497367be Mon Sep 17 00:00:00 2001 From: ryan Date: Thu, 7 Aug 2008 22:56:21 +0000 Subject: [PATCH] Fix Copy and Paste bug in cURL transport based. Props santosj. see #4779 git-svn-id: http://svn.automattic.com/wordpress/trunk@8583 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- 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 c64d701083..70ef577681 100644 --- a/wp-includes/http.php +++ b/wp-includes/http.php @@ -900,7 +900,7 @@ class WP_Http_Curl { $theResponse = curl_exec( $handle ); - list($theHeaders, $theBody) = explode("\r\n\r\n", $strResponse, 2); + list($theHeaders, $theBody) = explode("\r\n\r\n", $theResponse, 2); $theHeaders = WP_Http::processHeaders($theHeaders); $response = array();