diff options
Diffstat (limited to 'friends/edit.php')
-rw-r--r-- | friends/edit.php | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/friends/edit.php b/friends/edit.php deleted file mode 100644 index c164a819e..000000000 --- a/friends/edit.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php -/** - * Elgg add a collection of friends - * - * @package Elgg - * @subpackage Core - * @author Curverider Ltd - * @link http://elgg.org/ - */ - -// You need to be logged in for this one -gatekeeper(); - -$title = elgg_echo('friends:collectionedit'); - -$content = elgg_view_title($title); - -//grab the collection id passed to the edit form -$collection_id = get_input('collection'); - -//get the full collection -$collection = get_access_collection($collection_id); - -//get all members of the collection -$collection_members = get_members_of_access_collection($collection_id); - -$content .= elgg_view('friends/forms/edit', array('collection' => $collection, 'collection_members' => $collection_members)); - -$body = elgg_view_layout('one_column_with_sidebar', $content); - -page_draw($title, $body);
\ No newline at end of file |