$content = elgg_view_title($title);
-$content .= elgg_view('friends/forms/edit', array(
+$content .= elgg_view('forms/friends/edit', array(
'friends' => get_user_friends(get_loggedin_userid(), "", 9999)
)
);
//get all members of the collection
$collection_members = get_members_of_access_collection($collection_id);
-$content .= elgg_view('friends/forms/edit', array('collection' => $collection,
+$content .= elgg_view('forms/friends/edit', array('collection' => $collection,
'collection_members' => $collection_members));
$body = elgg_view_layout('one_column_with_sidebar', array('content' => $content));
'value' => $members,
'callback' => true,
'friendspicker' => $friendspicker,
- 'formcontents' => elgg_view('friends/forms/collectionfields',
+ 'formcontents' => elgg_view('forms/friends/collectionfields',
array('collection' => get_access_collection($collection))),
'formtarget' => $site_url . 'action/friends/editcollection',
));