diff options
author | Dries Buytaert <dries@buytaert.net> | 2009-09-30 18:36:02 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2009-09-30 18:36:02 +0000 |
commit | 7178f6b17398b10105f8246b11c8d10b14ae39a6 (patch) | |
tree | ce4bc701c146ae17f4e38190565c4839c22956ff /includes/database | |
parent | a8f8a26f6d77f6aca8821e28e66ea253687d7d59 (diff) | |
download | brdo-7178f6b17398b10105f8246b11c8d10b14ae39a6.tar.gz brdo-7178f6b17398b10105f8246b11c8d10b14ae39a6.tar.bz2 |
- Patch #451604 by brianV, sun | Dries, c960657: rename drupal_set_header().
Diffstat (limited to 'includes/database')
-rw-r--r-- | includes/database/database.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/database/database.inc b/includes/database/database.inc index b20de3979..4b51b8b9b 100644 --- a/includes/database/database.inc +++ b/includes/database/database.inc @@ -2381,7 +2381,7 @@ function _db_error_page($error = '') { global $db_type; drupal_language_initialize(); drupal_maintenance_theme(); - drupal_set_header($_SERVER['SERVER_PROTOCOL'] . ' 503 Service Unavailable'); + drupal_add_http_header($_SERVER['SERVER_PROTOCOL'] . ' 503 Service Unavailable'); drupal_set_title('Site offline'); } |