From fbae0db63f4f66bb3369d971e6d872694e0e213c Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Thu, 4 Jan 2007 09:49:16 +0000 Subject: - Patch #104693 by Chris: switch back to HTTP/1.0 headers. --- includes/common.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/common.inc b/includes/common.inc index 7e6751725..ef285ff66 100644 --- a/includes/common.inc +++ b/includes/common.inc @@ -454,7 +454,7 @@ function drupal_http_request($url, $headers = array(), $method = 'GET', $data = $defaults[$header] = $header .': '. $value; } - $request = $method .' '. $path ." HTTP/1.1\r\n"; + $request = $method .' '. $path ." HTTP/1.0\r\n"; $request .= implode("\r\n", $defaults); $request .= "\r\n\r\n"; if ($data) { -- cgit v1.2.3