diff options
Diffstat (limited to 'views/installation/input/hidden.php')
-rw-r--r-- | views/installation/input/hidden.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/views/installation/input/hidden.php b/views/installation/input/hidden.php index 7a0798e48..c9800ebbb 100644 --- a/views/installation/input/hidden.php +++ b/views/installation/input/hidden.php @@ -9,8 +9,8 @@ * * @uses $vars['value'] The current value, if any * @uses $vars['js'] Any Javascript to enter into the input tag - * @uses $vars['internalname'] The name of the input field + * @uses $vars['name'] The name of the input field * */ ?> -<input type="hidden" <?php echo $vars['js']; ?> name="<?php echo $vars['internalname']; ?>" value="<?php echo htmlentities($vars['value'], ENT_QUOTES, 'UTF-8'); ?>" />
\ No newline at end of file +<input type="hidden" <?php echo $vars['js']; ?> name="<?php echo $vars['name']; ?>" value="<?php echo htmlentities($vars['value'], ENT_QUOTES, 'UTF-8'); ?>" />
\ No newline at end of file |