aboutsummaryrefslogtreecommitdiff
path: root/views/installation
diff options
context:
space:
mode:
authorewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-11-20 07:12:04 +0000
committerewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-11-20 07:12:04 +0000
commit51f2b120faf78b7224a42b769cb99c2620ae9030 (patch)
treed6ef60622c5037823a64ac027dd7b9a47a9ac08e /views/installation
parent1702fd784aace9f5d78dd252b89185a13f195aaa (diff)
downloadelgg-51f2b120faf78b7224a42b769cb99c2620ae9030.tar.gz
elgg-51f2b120faf78b7224a42b769cb99c2620ae9030.tar.bz2
Refs #2143: DRY up button input views (button, reset, submit). Changed core uses of button to reflect the fact that it no longer defaults to submit
git-svn-id: http://code.elgg.org/elgg/trunk@7364 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'views/installation')
-rw-r--r--views/installation/input/reset.php11
-rw-r--r--views/installation/input/submit.php11
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