diff options
Diffstat (limited to 'mod/custom_index/index.php')
-rw-r--r-- | mod/custom_index/index.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/mod/custom_index/index.php b/mod/custom_index/index.php index 05771f576..43cab9723 100644 --- a/mod/custom_index/index.php +++ b/mod/custom_index/index.php @@ -24,6 +24,10 @@ $blogs = elgg_list_entities($list_params); $list_params['subtype'] = 'bookmarks'; $bookmarks = elgg_list_entities($list_params); +//grab the latest thewire +$list_params['subtype'] = 'thewire'; +$thewire = elgg_list_entities($list_params); + //grab the latest files $list_params['subtype'] = 'file'; $files = elgg_list_entities($list_params); @@ -58,6 +62,7 @@ $params = array( 'groups' => $groups, 'login' => $login, 'members' => $newest_members, + 'thewire' => $thewire, ); $body = elgg_view_layout('custom_index', $params); |