diff options
author | Dries Buytaert <dries@buytaert.net> | 2004-07-08 16:08:21 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2004-07-08 16:08:21 +0000 |
commit | 56fa37cb8ed145e83a639fb45ac96fb399cad1b0 (patch) | |
tree | 0cf89d970231efc814e652651afa19837a5436d8 | |
parent | 5b73def39b0300cc08bcd21fb46717c7b057c42e (diff) | |
download | brdo-56fa37cb8ed145e83a639fb45ac96fb399cad1b0.tar.gz brdo-56fa37cb8ed145e83a639fb45ac96fb399cad1b0.tar.bz2 |
- Made the example theme display status messages. Not sure why it wasn't.
-rw-r--r-- | includes/theme.inc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/includes/theme.inc b/includes/theme.inc index c7c7c4887..efc35721d 100644 --- a/includes/theme.inc +++ b/includes/theme.inc @@ -172,6 +172,8 @@ function theme_page($content, $title = NULL, $breadcrumb = NULL) { $output .= "<small>$help</small><hr />"; } + $output .= theme_status_messages(); + $output .= "\n<!-- begin content -->\n"; $output .= $content; $output .= "\n<!-- end content -->\n"; |