diff options
Diffstat (limited to 'themes/fab/header.php')
| -rw-r--r-- | themes/fab/header.php | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/themes/fab/header.php b/themes/fab/header.php index fda9948ff0..d63f82cf55 100644 --- a/themes/fab/header.php +++ b/themes/fab/header.php @@ -124,6 +124,11 @@ if ($view!='simple') { // Use "simple" headers for popup windows } } unset($menu_items, $menu); - echo '</ul></div></div>'; + echo '</ul></div>'; + // Display feedback from asynchronous actions + foreach (Zend_Controller_Action_HelperBroker::getStaticHelper('FlashMessenger')->getMessages() as $message) { + echo '<p class="ui-state-highlight">', $message, '</p>'; + } + echo '</div>'; // <div id="header"> } echo '<div id="content">'; |
