diff options
Diffstat (limited to 'pages/friends.php')
-rw-r--r-- | pages/friends.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/pages/friends.php b/pages/friends.php index e35adce04..03ae1300a 100644 --- a/pages/friends.php +++ b/pages/friends.php @@ -26,11 +26,14 @@ $area2 = elgg_view_title($title); + $albums = get_user_friends_objects($user->guid, 'album', 12); + // get html for viewing list of photo albums set_context('search'); set_input('search_viewtype', 'gallery'); // need to force gallery view - $area2 .= list_user_friends_objects($user->guid, 'album', 10, true, false); + $content = tp_view_entity_list($albums, count($albums), 0, 12, false, false, true); + $area2 = elgg_view('tidypics/content_wrapper', array('title' => $title, 'content' => $content,)); $body = elgg_view_layout('two_column_left_sidebar', '', $area2); |