diff options
author | Nathan Guse <nathaniel.guse@gmail.com> | 2012-09-09 17:20:39 -0500 |
---|---|---|
committer | Nathan Guse <nathaniel.guse@gmail.com> | 2012-09-09 17:20:39 -0500 |
commit | 5502f3c4aa30ce72131f2a55bcfa3db7a4059427 (patch) | |
tree | bd1b8b9bac12bb5f97389a11231a83b37aa7852e /phpBB/includes/functions.php | |
parent | e09f25d59707fc842b073fa2909cefc3d16ecbf3 (diff) | |
download | forums-5502f3c4aa30ce72131f2a55bcfa3db7a4059427.tar forums-5502f3c4aa30ce72131f2a55bcfa3db7a4059427.tar.gz forums-5502f3c4aa30ce72131f2a55bcfa3db7a4059427.tar.bz2 forums-5502f3c4aa30ce72131f2a55bcfa3db7a4059427.tar.xz forums-5502f3c4aa30ce72131f2a55bcfa3db7a4059427.zip |
[ticket/11103] Restyle the notification list
Very rough (lots of inline CSS, very ugly)
PHPBB3-11103
Diffstat (limited to 'phpBB/includes/functions.php')
-rw-r--r-- | phpBB/includes/functions.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php index 7632ea1fcb..e5c7839894 100644 --- a/phpBB/includes/functions.php +++ b/phpBB/includes/functions.php @@ -5096,7 +5096,7 @@ function page_header($page_title = '', $display_online_list = true, $item_id = 0 $phpbb_notifications = $phpbb_container->get('notifications'); foreach ($phpbb_notifications->load_notifications() as $notification) { - $notification->display(); + $template->assign_block_vars('notifications', $notification->prepare_for_display()); } // application/xhtml+xml not used because of IE |