diff options
-rw-r--r-- | includes/theme.maintenance.inc | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/includes/theme.maintenance.inc b/includes/theme.maintenance.inc index 0b9b9fdbb..b4cc24940 100644 --- a/includes/theme.maintenance.inc +++ b/includes/theme.maintenance.inc @@ -139,6 +139,12 @@ function theme_install_page($content) { $variables['messages'] .= theme('status_messages', 'status'); } + // This was called as a theme hook (not template), so we need to + // fix path_to_theme() for the template, to point at the actual + // theme rather than system module as owner of the hook. + global $theme_path; + $theme_path = 'themes/garland'; + return theme_render_template('themes/garland/maintenance-page.tpl.php', $variables); } @@ -171,6 +177,12 @@ function theme_update_page($content, $show_messages = TRUE) { $variables['messages'] .= theme('status_messages', 'warning'); } + // This was called as a theme hook (not template), so we need to + // fix path_to_theme() for the template, to point at the actual + // theme rather than system module as owner of the hook. + global $theme_path; + $theme_path = 'themes/garland'; + return theme_render_template('themes/garland/maintenance-page.tpl.php', $variables); } |