Ticket #4779: 4779.r8582.diff

File 4779.r8582.diff, 433 bytes (added by santosj, 5 years ago)

Fix Copy and Paste bug in cURL transport based off of r8582

Line 
1Index: http.php
2===================================================================
3--- http.php    (revision 8582)
4+++ http.php    (working copy)
5@@ -900,7 +900,7 @@
6 
7                $theResponse = curl_exec( $handle );
8 
9-               list($theHeaders, $theBody) = explode("\r\n\r\n", $strResponse, 2);
10+               list($theHeaders, $theBody) = explode("\r\n\r\n", $theResponse, 2);
11                $theHeaders = WP_Http::processHeaders($theHeaders);
12 
13                $response = array();