blob: 4d346e823ba218dcc110c53bd45d62f3e0a824e2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<?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);
|