summaryrefslogtreecommitdiff
path: root/actions/register.php
diff options
context:
space:
mode:
authorEvan Prodromou <evan@prodromou.name>2008-05-17 13:09:20 -0400
committerEvan Prodromou <evan@prodromou.name>2008-05-17 13:09:20 -0400
commitee0056e7178e933e460fb99256f8156753587928 (patch)
tree56c4424f7d33d4c2bf65bbad9717037b0c4778f6 /actions/register.php
parent179c91b921843040a7639364e818b57d5604b6de (diff)
buttons work right
darcs-hash:20080517170920-84dde-150c051a92f5af4189e55539d71c37b4f20e369d.gz
Diffstat (limited to 'actions/register.php')
-rw-r--r--actions/register.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/actions/register.php b/actions/register.php
index af5a8ca2d..908ae80cd 100644
--- a/actions/register.php
+++ b/actions/register.php
@@ -124,12 +124,12 @@ class RegisterAction extends Action {
'id' => 'email'));
common_element('input', array('name' => 'submit',
'type' => 'submit',
- 'id' => 'submit'),
- _t('Login'));
+ 'id' => 'submit',
+ 'value' => _t('Login')));
common_element('input', array('name' => 'cancel',
'type' => 'button',
- 'id' => 'cancel'),
- _t('Cancel'));
+ 'id' => 'cancel',
+ 'value' => _t('Cancel')));
common_element_end('form');
}
}