diff options
author | dave <dave@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-03-10 17:24:39 +0000 |
---|---|---|
committer | dave <dave@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-03-10 17:24:39 +0000 |
commit | c19ffb87ab3f745e664ac9100100c1fc37cb3281 (patch) | |
tree | 74828ada5205750e49a4b8d2f748168e31537a7f /mod/profile/views | |
parent | 409331a459355fb827aa33acf3275f3d618a2510 (diff) | |
download | elgg-c19ffb87ab3f745e664ac9100100c1fc37cb3281.tar.gz elgg-c19ffb87ab3f745e664ac9100100c1fc37cb3281.tar.bz2 |
profile activity tweaked // it is still not working correctly but doesn't cause a wsod
git-svn-id: http://code.elgg.org/elgg/trunk@5349 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/profile/views')
-rwxr-xr-x | mod/profile/views/default/profile/profile_contents/activity.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/profile/views/default/profile/profile_contents/activity.php b/mod/profile/views/default/profile/profile_contents/activity.php index c24a210cb..bd7d7b5e5 100755 --- a/mod/profile/views/default/profile/profile_contents/activity.php +++ b/mod/profile/views/default/profile/profile_contents/activity.php @@ -12,7 +12,7 @@ } if(is_plugin_enabled('riverdashboard')) { // users last 10 activites - echo elgg_view('profile/profile_contents/activity', array('entity' => $vars['entity'])); + echo elgg_view_river_items($vars['entity']->getGuid(), 0, '', '', '', '', $limit,0,0,false,false); } else { echo "Riverdashboard not loaded"; } |