diff options
author | dave <dave@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-05-24 10:55:35 +0000 |
---|---|---|
committer | dave <dave@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-05-24 10:55:35 +0000 |
commit | e19cfa41887be92952358cf6ba6ee4a2a954a4c2 (patch) | |
tree | bc0c8edcde3f897d3f2136c8778ca042e9c5c878 /mod/sitepages/index.php | |
parent | 31ac981430c5d8c31d97206e3c8bb7f4b5ba5517 (diff) | |
download | elgg-e19cfa41887be92952358cf6ba6ee4a2a954a4c2.tar.gz elgg-e19cfa41887be92952358cf6ba6ee4a2a954a4c2.tar.bz2 |
sitepages now displays the correct river
git-svn-id: http://code.elgg.org/elgg/trunk@6155 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/sitepages/index.php')
-rw-r--r-- | mod/sitepages/index.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/sitepages/index.php b/mod/sitepages/index.php index 516763bd2..2a714926a 100644 --- a/mod/sitepages/index.php +++ b/mod/sitepages/index.php @@ -16,7 +16,7 @@ $content .= elgg_view_title(elgg_echo('content:latest')); set_context('search');
$offset = (int)get_input('offset', 0);
if(is_plugin_enabled('riverdashboard'))
- $content .= elgg_view_river_items(0, 0, "", "", "", '', 10, 0, 0, true, true);
+ $content .= elgg_view_river_items(0, 0, "", "", "", '', 10, 0, 0, true, false);
else
$content .= elgg_list_registered_entities(array('limit' => 10, 'offset' => $offset, 'full_view' => FALSE, 'allowed_types' => array('object','group')));
set_context('main');
|