blob: b7fb716f2a3e90b3efdc71ec9b7984e4a57cdd04 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<?php
/**
* Friends collection edit action
*
* @package Elgg.Core
* @subpackage Friends.Collections
*/
$collection_id = get_input('collection_id');
$friends = get_input('friend');
//chech the collection exists and the current user owners it
update_access_collection($collection_id, $friends);
exit;
|