blob: 9b0dd7d23858b310c12b303a3402bed1370e86c4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<?php
/**
* Elgg collection add page
*
* @package Elgg
* @subpackage Core
*/
$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);
|