aboutsummaryrefslogtreecommitdiff
path: root/views/installation/input/hidden.php
blob: 139ff03d782ff0de7fb9fe173dcd4874b3c5397d (plain)
1
2
3
4
5
6
7
8
9
10
<?php
/**
 * Create a hidden data field
 *
 * @uses $vars['value'] The current value, if any
 * @uses $vars['name'] The name of the input field
 *
 */
?>
<input type="hidden" name="<?php echo $vars['name']; ?>" value="<?php echo htmlentities($vars['value'], ENT_QUOTES, 'UTF-8'); ?>" />