aboutsummaryrefslogtreecommitdiff
path: root/views/default/input/button.php
diff options
context:
space:
mode:
Diffstat (limited to 'views/default/input/button.php')
-rw-r--r--views/default/input/button.php9
1 files changed, 5 insertions, 4 deletions
diff --git a/views/default/input/button.php b/views/default/input/button.php
index 0a65feb82..0ad19a432 100644
--- a/views/default/input/button.php
+++ b/views/default/input/button.php
@@ -1,8 +1,9 @@
<?php
/**
* Create a input button
- * Use this view for forms rather than creating a submit/reset button tag in the wild as it provides
- * extra security which help prevent CSRF attacks.
+ * Use this view or submit view for forms rather than creating a
+ * submit/reset button tag in the wild as it provides extra security
+ * which help prevent CSRF attacks.
*
* @package Elgg
* @subpackage Core
@@ -21,11 +22,11 @@ global $CONFIG;
if (isset($vars['class'])) {
$class = $vars['class'];
-}
-if (!$class) {
+} else {
$class = "submit_button";
}
+// defaults to submit button
if (isset($vars['type'])) {
$type = strtolower($vars['type']);
} else {