num_display; $options = array( 'limit' => $num, 'pagination' => false, ); if (elgg_in_context('profile')) { $options['subject_guid'] = elgg_get_page_owner_guid(); } else { if ($vars['entity']->content_type == 'friends') { $options['relationship_guid'] = elgg_get_logged_in_user_guid(); $options['relationship'] = 'friend'; } } $content = elgg_list_river($options); if (!$content) { $content = elgg_echo('river:none'); } echo $content;