diff options
Diffstat (limited to 'mod/thewire/index.php')
-rw-r--r-- | mod/thewire/index.php | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/mod/thewire/index.php b/mod/thewire/index.php index 36dc5ddab..6cd49e472 100644 --- a/mod/thewire/index.php +++ b/mod/thewire/index.php @@ -27,7 +27,12 @@ $area2 .= elgg_view("thewire/forms/add"); // Display the user's wire - $area2 .= list_user_objects($page_owner->getGUID(),'thewire'); + $options = array( + 'type' => 'object', + 'subtype' => 'thewire', + 'owner_guid' => $page_owner->getGUID() + ); + $area2 .= elgg_list_entities($options); //select the correct canvas area $body = elgg_view_layout("one_column_with_sidebar", array('content' => $area2)); |