diff options
author | Dries Buytaert <dries@buytaert.net> | 2007-01-04 09:49:16 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2007-01-04 09:49:16 +0000 |
commit | fbae0db63f4f66bb3369d971e6d872694e0e213c (patch) | |
tree | 34ddf66844f4749cb7c6e832baccb85f45cdd089 /includes | |
parent | 1fee60766ed28d916ee139a3266544f4dd899e68 (diff) | |
download | brdo-fbae0db63f4f66bb3369d971e6d872694e0e213c.tar.gz brdo-fbae0db63f4f66bb3369d971e6d872694e0e213c.tar.bz2 |
- Patch #104693 by Chris: switch back to HTTP/1.0 headers.
Diffstat (limited to 'includes')
-rw-r--r-- | includes/common.inc | 2 |
1 files changed, 1 insertions, 1 deletions
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) { |