- Patch #6887 by drumm: fixed drupal_http_request

4.5.x
Dries Buytaert 2004-04-27 18:17:17 +00:00
parent a2da46a10a
commit b3265bcb86
1 changed files with 3 additions and 1 deletions

View File

@ -373,12 +373,14 @@ function drupal_http_request($url, $headers = array(), $method = 'GET', $data =
fwrite($fp, $request);
// Fetch response.
$response = '';
while (!feof($fp) && $data = fread($fp, 1024)) {
$response[] = $data;
$response .= $data;
}
fclose($fp);
// Parse response.
$response = preg_split("/\r\n|\n|\r/", $response);
list($protocol, $code, $text) = explode(' ', trim(array_shift($response)), 3);
$result->headers = array();
$result->data = '';