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

	/**
	 * Elgg friends picker count updater
	 * Updates the friends count on a collection
	 * 
	 * @package Elgg
	 * @subpackage Core

	 * @author Curverider Ltd

	 * @link http://elgg.org/
	 * 
	 * @uses $vars['count'] The count
	 * @uses $vars['friendspicker'] The friendspicker counter number
	 */

?>

<script language="text/javascript">
	$("#friends_membership_count<?php echo $vars['friendspicker']; ?>").html("<?php echo $vars['count']; ?>");
</script>