diff options
author | pete <pete@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-04-28 20:10:31 +0000 |
---|---|---|
committer | pete <pete@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-04-28 20:10:31 +0000 |
commit | 830656d34e5d0cf097f310a8459f43b36bcdaaad (patch) | |
tree | a0068219b4c22b5107911594a59872aa2afbb045 /mod/profile/views | |
parent | f3b0f6c073ae143c01983968ec1a549b60face80 (diff) | |
download | elgg-830656d34e5d0cf097f310a8459f43b36bcdaaad.tar.gz elgg-830656d34e5d0cf097f310a8459f43b36bcdaaad.tar.bz2 |
Updated activity stream on users Profile to include riverdashboard js. Added extra css rules for inline comments and likes on profile activity.
git-svn-id: http://code.elgg.org/elgg/trunk@5912 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/profile/views')
-rwxr-xr-x | mod/profile/views/default/profile/profile_contents/activity.php | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/mod/profile/views/default/profile/profile_contents/activity.php b/mod/profile/views/default/profile/profile_contents/activity.php index a9b8cce8c..588ed89d1 100755 --- a/mod/profile/views/default/profile/profile_contents/activity.php +++ b/mod/profile/views/default/profile/profile_contents/activity.php @@ -17,10 +17,12 @@ } if(is_plugin_enabled('riverdashboard')) { //select the correct river - if (get_plugin_setting('activitytype', 'riverdashboard') == 'classic') + if (get_plugin_setting('activitytype', 'riverdashboard') == 'classic') { echo elgg_view_river_items($vars['entity']->getGuid(), 0, '', '', '', '', $limit,0,0,false,true); - else + } else { echo elgg_view_river_items($vars['entity']->getGuid(), 0, '', '', '', '', $limit,0,0,false,false); + echo elgg_view('riverdashboard/js'); + } } else { echo "Riverdashboard not loaded"; } |