blob: ede61b4b0e4a6831af887fffcfbf296003264f82 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<?php
/**
* Elgg collection add page
*
* @package Elgg
* @subpackage Core
* @author Curverider Ltd
* @link http://elgg.org/
*/
$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);
?>
|