summaryrefslogtreecommitdiff
path: root/includes/theme.maintenance.inc
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2009-04-22 09:45:03 +0000
committerDries Buytaert <dries@buytaert.net>2009-04-22 09:45:03 +0000
commit526401c4c8f7e1a8126c4810a7d7023c4f8bafc5 (patch)
tree27de106e9904b714e62a02c2f579a28743a4fded /includes/theme.maintenance.inc
parent2bc19555bfca04551333e361509c2f51841e16c2 (diff)
downloadbrdo-526401c4c8f7e1a8126c4810a7d7023c4f8bafc5.tar.gz
brdo-526401c4c8f7e1a8126c4810a7d7023c4f8bafc5.tar.bz2
- Patch #147310 by c960657 et al: better cache headers for reverse proxies.
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 f2278d670..7eb3ef6aa 100644
--- a/includes/theme.maintenance.inc
+++ b/includes/theme.maintenance.inc
@@ -108,7 +108,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_set_header('Content-Type', 'text/html; charset=utf-8');
// Assign content.
$variables['content'] = $content;
@@ -162,7 +162,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_set_header('Content-Type', 'text/html; charset=utf-8');
// Assign content and show message flag.
$variables['content'] = $content;