summaryrefslogtreecommitdiff
path: root/includes
diff options
context:
space:
mode:
authorSteven Wittens <steven@10.no-reply.drupal.org>2005-07-29 07:49:43 +0000
committerSteven Wittens <steven@10.no-reply.drupal.org>2005-07-29 07:49:43 +0000
commit3084036576a2ed2f1155bda0aa09934de963c9be (patch)
treec3777a87fef539985f6f2b7bd6ac9d2a8d3a121a /includes
parentf493c156d453690093a3e48f24f2ba3ce6e35ba0 (diff)
downloadbrdo-3084036576a2ed2f1155bda0aa09934de963c9be.tar.gz
brdo-3084036576a2ed2f1155bda0aa09934de963c9be.tar.bz2
- #27231: (fix) Pretty db error screens.
Diffstat (limited to 'includes')
-rw-r--r--includes/theme.inc3
1 files changed, 1 insertions, 2 deletions
diff --git a/includes/theme.inc b/includes/theme.inc
index 04100a8e9..74e2066d2 100644
--- a/includes/theme.inc
+++ b/includes/theme.inc
@@ -442,13 +442,12 @@ function theme_page($content) {
function theme_maintenance_page($content) {
drupal_set_header('Content-Type: text/html; charset=utf-8');
- theme('add_style', 'misc/drupal.css');
theme('add_style', 'misc/maintenance.css');
$output = "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n";
$output .= '<html xmlns="http://www.w3.org/1999/xhtml">';
$output .= '<head>';
- $output .= '<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />';
$output .= ' <title>'. drupal_get_title() .'</title>';
+ $output .= drupal_get_html_head();
$output .= theme_get_styles();
$output .= '</head>';
$output .= '<body>';