mirror of
https://github.com/WordPress/WordPress.git
synced 2025-01-03 15:08:10 +01:00
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
This commit is contained in:
parent
642c8d9b54
commit
907ba1cfce
@ -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();
|
||||
|
Loading…
Reference in New Issue
Block a user