aboutsummaryrefslogtreecommitdiff
path: root/views/default/friends/forms/collectionfields.php
blob: 0b387f8306069b5dfb06f29e18d4a92b3342f720 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php

	/**
	 * Elgg friend collections required hidden fields for js friends picker form 
	 * 
	 * @package Elgg
	 * @subpackage Core

	 * @author Curverider Ltd

	 * @link http://elgg.org/
	 */

		if (isset($vars['collection'])) {
?>

		<input type="hidden" name="collection_id" value="<?php echo $vars['collection']->id; ?>" />

<?php

		}

?>