diff options
author | dave <dave@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-04-05 13:23:37 +0000 |
---|---|---|
committer | dave <dave@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-04-05 13:23:37 +0000 |
commit | 8b83d3826376ccd989ac1669f025af4fabd15364 (patch) | |
tree | 9695258b7784ec1d6589fe6d315c032a6d9db4bf /mod/profile/profile_lib.php | |
parent | 2245e8d952a0aa7f5ccb75ebda9e6b0afe09e70d (diff) | |
download | elgg-8b83d3826376ccd989ac1669f025af4fabd15364.tar.gz elgg-8b83d3826376ccd989ac1669f025af4fabd15364.tar.bz2 |
feeds options added to the profile
git-svn-id: http://code.elgg.org/elgg/trunk@5617 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/profile/profile_lib.php')
-rw-r--r-- | mod/profile/profile_lib.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mod/profile/profile_lib.php b/mod/profile/profile_lib.php index 993985279..b38286e1e 100644 --- a/mod/profile/profile_lib.php +++ b/mod/profile/profile_lib.php @@ -29,6 +29,9 @@ function profile_get_user_profile_html($user, $section = 'activity') { case 'twitter': $body .= elgg_view('profile/profile_contents/twitter', $view_options); break; + case 'feeds': + $body .= elgg_view('profile/profile_contents/feeds', $view_options); + break; case 'commentwall': $comments = $user->getAnnotations('commentwall', 200, 0, 'desc'); $body .= elgg_view('profile/profile_contents/commentwall', array("entity" => $user, "comments" => $comments)); |