summaryrefslogtreecommitdiff
path: root/includes/theme.maintenance.inc
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2009-09-30 18:36:02 +0000
committerDries Buytaert <dries@buytaert.net>2009-09-30 18:36:02 +0000
commit7178f6b17398b10105f8246b11c8d10b14ae39a6 (patch)
treece4bc701c146ae17f4e38190565c4839c22956ff /includes/theme.maintenance.inc
parenta8f8a26f6d77f6aca8821e28e66ea253687d7d59 (diff)
downloadbrdo-7178f6b17398b10105f8246b11c8d10b14ae39a6.tar.gz
brdo-7178f6b17398b10105f8246b11c8d10b14ae39a6.tar.bz2
- Patch #451604 by brianV, sun | Dries, c960657: rename drupal_set_header().
Diffstat (limited to 'includes/theme.maintenance.inc')
-rw-r--r--includes/theme.maintenance.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/includes/theme.maintenance.inc b/includes/theme.maintenance.inc
index 701908639..1695acef3 100644
--- a/includes/theme.maintenance.inc
+++ b/includes/theme.maintenance.inc
@@ -119,7 +119,7 @@ function theme_task_list($items, $active = NULL) {
* The page content to show.
*/
function theme_install_page($content) {
- drupal_set_header('Content-Type', 'text/html; charset=utf-8');
+ drupal_add_http_header('Content-Type', 'text/html; charset=utf-8');
// Assign content.
$variables['content'] = $content;
@@ -176,7 +176,7 @@ function theme_install_page($content) {
*/
function theme_update_page($content, $show_messages = TRUE) {
// Set required headers.
- drupal_set_header('Content-Type', 'text/html; charset=utf-8');
+ drupal_add_http_header('Content-Type', 'text/html; charset=utf-8');
// Assign content and show message flag.
$variables['content'] = $content;