summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/util.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/util.php b/lib/util.php
index fb89d1ca2..07332a07f 100644
--- a/lib/util.php
+++ b/lib/util.php
@@ -218,10 +218,12 @@ function common_password($id, $label) {
function common_submit($id, $label) {
common_element_start('p');
+ common_element('label', NULL, ' ');
common_element('input', array('type' => 'submit',
'id' => $id,
'name' => $id,
- 'value' => $label));
+ 'value' => $label,
+ 'class' => 'button'));
common_element_end('p');
}