diff options
author | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-11-21 13:00:08 +0000 |
---|---|---|
committer | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-11-21 13:00:08 +0000 |
commit | 75187715f6d7a04bbda4858d6a17138001da4807 (patch) | |
tree | 9a87d9b742c6f82bd6a9ac3a9c51c972ec6cb670 /mod | |
parent | c100c017b6c9aeb6faf5b901fe0e128035e9b1e0 (diff) | |
download | elgg-75187715f6d7a04bbda4858d6a17138001da4807.tar.gz elgg-75187715f6d7a04bbda4858d6a17138001da4807.tar.bz2 |
deprecated two site functions and removed a use of previously deprecated function in the wire plugin
git-svn-id: http://code.elgg.org/elgg/trunk@7396 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod')
-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)); |