diff --git a/includes/common.inc b/includes/common.inc index 8f6f2421f67105daa96bcfb557c3f8a6206a1531..7de4eb6b1b578afd4226ad1867a048faff2d1fb1 100644 --- a/includes/common.inc +++ b/includes/common.inc @@ -340,22 +340,18 @@ function drupal_http_request($url, $headers = array(), $method = 'GET', $data = fclose($fp); // Parse response. - $response = preg_split("/\r\n|\n|\r/", $response); - list($protocol, $code, $text) = explode(' ', trim(array_shift($response)), 3); + list($headers, $result->data) = explode("\r\n\r\n", $response, 2); + $headers = preg_split("/\r\n|\n|\r/", $headers); + + list($protocol, $code, $text) = explode(' ', trim(array_shift($headers)), 3); $result->headers = array(); - $result->data = ''; // Parse headers. - while ($line = trim(array_shift($response))) { - if ($line == '') { - break; - } + while ($line = trim(array_shift($headers))) { list($header, $value) = explode(':', $line, 2); $result->headers[$header] = trim($value); } - $result->data = implode('', $response); - $responses = array( 100 => 'Continue', 101 => 'Switching Protocols', 200 => 'OK', 201 => 'Created', 202 => 'Accepted', 203 => 'Non-Authoritative Information', 204 => 'No Content', 205 => 'Reset Content', 206 => 'Partial Content',