aboutsummaryrefslogtreecommitdiff
path: root/mod/groups/views/default/groups/find.php
blob: 534469052106b2e66fdeba72cb3c4a8028417dbe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php

	/**
	 * A simple group search by tag view
	 **/

$tag_string = elgg_echo('groups:search:tags');
	 
?>
<h3><?php echo elgg_echo('groups:searchtag'); ?></h3>
<form id="groupsearchform" action="<?php echo $vars['url']; ?>pg/groups/world/" method="get">
	<input type="text" name="tag" value="<?php echo $tag_string; ?>" onclick="if (this.value=='<?php echo $tag_string; ?>') { this.value='' }" class="search_input" />
	<input type="submit" value="<?php echo elgg_echo('go'); ?>" />
</form>