diff options
Diffstat (limited to 'mod/riverdashboard/index.php')
-rw-r--r-- | mod/riverdashboard/index.php | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/mod/riverdashboard/index.php b/mod/riverdashboard/index.php index 61142f300..4f13e323e 100644 --- a/mod/riverdashboard/index.php +++ b/mod/riverdashboard/index.php @@ -44,12 +44,7 @@ switch($orient) { $title = elgg_view_title($title_wording); -//select the correct river -if (get_plugin_setting('activitytype', 'riverdashboard') == 'classic') { - $river = elgg_view_river_items($subject_guid, 0, $relationship_type, $type, $subtype, '', 20, 0, 0, true, true); -} else { - $river = elgg_view_river_items($subject_guid, 0, $relationship_type, $type, $subtype, '', 20, 0, 0, true, false); -} +$river = elgg_view_river_items($subject_guid, 0, $relationship_type, $type, $subtype, '', 20, 0, 0, true, false); // Replacing callback calls in the nav with something meaningless $river = str_replace('callback=true','replaced=88,334',$river); |