diff options
Diffstat (limited to 'mod/messages/index.php')
-rw-r--r-- | mod/messages/index.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mod/messages/index.php b/mod/messages/index.php index 97c1cfff4..28a874635 100644 --- a/mod/messages/index.php +++ b/mod/messages/index.php @@ -22,6 +22,7 @@ $page_owner = get_loggedin_user(); set_page_owner($page_owner->getGUID()); // Get the user's inbox, this will be all messages where the 'toId' field matches their guid +// @todo - fix hack where limit + 1 messages are requested $messages = elgg_get_entities_from_metadata(array( 'type' => 'object', 'subtype' => 'messages', @@ -49,4 +50,4 @@ $body = elgg_view_layout("one_column_with_sidebar", $area2); // Draw page -page_draw(sprintf(elgg_echo('messages:user'),$page_owner->name),$body);
\ No newline at end of file +page_draw(sprintf(elgg_echo('messages:user'),$page_owner->name),$body); |