diff options
author | Dries Buytaert <dries@buytaert.net> | 2008-09-08 21:24:30 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2008-09-08 21:24:30 +0000 |
commit | c2746a949ee34bd9a93f21d1ca808a918fe7ae52 (patch) | |
tree | 3dccb19a3467acc0e900e979e66257a66392a3e0 /includes/common.inc | |
parent | a1d73f1342b6d65dd0e26d5c85b01a60411c5be9 (diff) | |
download | brdo-c2746a949ee34bd9a93f21d1ca808a918fe7ae52.tar.gz brdo-c2746a949ee34bd9a93f21d1ca808a918fe7ae52.tar.bz2 |
- Patch #208793 by kbahey, Damien Tournoud: stop hardcoding the HTTP protocol version where possible.
Diffstat (limited to 'includes/common.inc')
-rw-r--r-- | includes/common.inc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/includes/common.inc b/includes/common.inc index 13628d2f1..81e2ca1cd 100644 --- a/includes/common.inc +++ b/includes/common.inc @@ -325,7 +325,7 @@ function drupal_goto($path = '', $query = NULL, $fragment = NULL, $http_response */ function drupal_site_offline() { drupal_maintenance_theme(); - drupal_set_header('HTTP/1.1 503 Service unavailable'); + drupal_set_header($_SERVER['SERVER_PROTOCOL'] . ' 503 Service unavailable'); drupal_set_title(t('Site offline')); print theme('maintenance_page', filter_xss_admin(variable_get('site_offline_message', t('@site is currently under maintenance. We should be back shortly. Thank you for your patience.', array('@site' => variable_get('site_name', 'Drupal')))))); @@ -335,7 +335,7 @@ function drupal_site_offline() { * Generates a 404 error if the request can not be handled. */ function drupal_not_found() { - drupal_set_header('HTTP/1.1 404 Not Found'); + drupal_set_header($_SERVER['SERVER_PROTOCOL'] . ' 404 Not Found'); watchdog('page not found', check_plain($_GET['q']), NULL, WATCHDOG_WARNING); @@ -365,7 +365,7 @@ function drupal_not_found() { * Generates a 403 error if the request is not allowed. */ function drupal_access_denied() { - drupal_set_header('HTTP/1.1 403 Forbidden'); + drupal_set_header($_SERVER['SERVER_PROTOCOL'] . ' 403 Forbidden'); watchdog('access denied', check_plain($_GET['q']), NULL, WATCHDOG_WARNING); // Keep old path for reference. |