aboutsummaryrefslogtreecommitdiff
path: root/views/default/messages/list.php
diff options
context:
space:
mode:
authorewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-11-01 22:49:31 +0000
committerewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-11-01 22:49:31 +0000
commitaf335c48fc3f4a741e7b5650db46aac48183c244 (patch)
treefd2b6803c2db773ef5a5be4127e3112a3cc51d79 /views/default/messages/list.php
parentc3277515ae8ad8aea53e53562fef01d339fcdeb1 (diff)
downloadelgg-af335c48fc3f4a741e7b5650db46aac48183c244.tar.gz
elgg-af335c48fc3f4a741e7b5650db46aac48183c244.tar.bz2
Fixes #2318: Adjusted system message markup + styles to work with ajax actions
git-svn-id: http://code.elgg.org/elgg/trunk@7185 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'views/default/messages/list.php')
-rw-r--r--views/default/messages/list.php13
1 files changed, 9 insertions, 4 deletions
diff --git a/views/default/messages/list.php b/views/default/messages/list.php
index 3084f09f8..dc50ef071 100644
--- a/views/default/messages/list.php
+++ b/views/default/messages/list.php
@@ -8,9 +8,14 @@
*
* @uses $vars['object'] The array of message registers
*/
+?>
-if (!empty($vars['object']) && is_array($vars['object']) && sizeof($vars['object']) > 0) {
- foreach($vars['object'] as $register => $list ) {
- echo elgg_view("messages/{$register}/list", array('object' => $list));
+<div id="elgg_system_messages">
+<?php
+ if (!empty($vars['object']) && is_array($vars['object']) && sizeof($vars['object']) > 0) {
+ foreach($vars['object'] as $register => $list ) {
+ echo elgg_view("messages/{$register}/list", array('object' => $list));
+ }
}
-}
+?>
+</div> \ No newline at end of file