blob: 9c2fc6c08b87205052fbf03dbc75cf437dbe1846 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<?php
/**
* Create a hidden data field
*
* @package Elgg
* @subpackage Core
*
* @uses $vars['value'] The current value, if any
*/
?>
<input type="hidden" <?php echo elgg_format_attributes($vars); ?> />
|