blob: 29adba5fc43eeb35ee366617a3f530366d8471db (
plain)
1
2
3
4
5
6
7
8
9
10
|
<?php
$defaults = array(
'placeholder' => elgg_echo('placeholder:search'),
);
$vars = array_merge($defaults, $vars);
?>
<input type="search" <?php echo elgg_format_attributes($vars); ?> />
|