diff options
Diffstat (limited to 'includes/theme.inc')
-rw-r--r-- | includes/theme.inc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/includes/theme.inc b/includes/theme.inc index 10478d195..8c53e8461 100644 --- a/includes/theme.inc +++ b/includes/theme.inc @@ -450,16 +450,16 @@ function theme_install_page($content) { $output .= theme('status_messages', 'error'); } - $output .= "\n<!-- begin content -->\n"; - $output .= $content; - $output .= "\n<!-- end content -->\n"; - if (isset($messages['status'])) { $warnings = count($messages['status']) > 1 ? 'warnings' : 'warning'; $output .= "<h4>The following installation $warnings should be carefully reviewed, but in most cases may be safely ignored:</h4>"; $output .= theme('status_messages', 'status'); } + $output .= "\n<!-- begin content -->\n"; + $output .= $content; + $output .= "\n<!-- end content -->\n"; + $output .= '</body></html>'; return $output; |