diff options
author | Evan Prodromou <evan@prodromou.name> | 2008-05-17 13:09:20 -0400 |
---|---|---|
committer | Evan Prodromou <evan@prodromou.name> | 2008-05-17 13:09:20 -0400 |
commit | ee0056e7178e933e460fb99256f8156753587928 (patch) | |
tree | 56c4424f7d33d4c2bf65bbad9717037b0c4778f6 | |
parent | 179c91b921843040a7639364e818b57d5604b6de (diff) |
buttons work right
darcs-hash:20080517170920-84dde-150c051a92f5af4189e55539d71c37b4f20e369d.gz
-rw-r--r-- | actions/register.php | 8 |
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'); } } |