diff options
Diffstat (limited to 'views/installation/input')
-rw-r--r-- | views/installation/input/reset.php | 11 | ||||
-rw-r--r-- | views/installation/input/submit.php | 11 |
2 files changed, 0 insertions, 22 deletions
diff --git a/views/installation/input/reset.php b/views/installation/input/reset.php index 1d5e47ccb..0c83a92ca 100644 --- a/views/installation/input/reset.php +++ b/views/installation/input/reset.php @@ -6,19 +6,8 @@ * * @package Elgg * @subpackage Core - * - * @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['type'] Submit or reset, defaults to submit. - * */ $vars['type'] = 'reset'; -$class = $vars['class']; -if (!$class) { - $class = "submit_button"; -} -$vars['class'] = $class; echo elgg_view('input/button', $vars);
\ No newline at end of file diff --git a/views/installation/input/submit.php b/views/installation/input/submit.php index 0a6d2a06d..aefb2ada6 100644 --- a/views/installation/input/submit.php +++ b/views/installation/input/submit.php @@ -6,19 +6,8 @@ * * @package Elgg * @subpackage Core - * - * @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['type'] Submit or reset, defaults to submit. - * */ $vars['type'] = 'submit'; -$class = $vars['class']; -if (!$class) { - $class = "submit_button"; -} -$vars['class'] = $class; echo elgg_view('input/button', $vars);
\ No newline at end of file |