aboutsummaryrefslogtreecommitdiff
path: root/actions/friends/editcollection.php
blob: a1a38845f3f24d6583c396162f32319016860ddb (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);
	 
?>