buttons work right

darcs-hash:20080517170920-84dde-150c051a92f5af4189e55539d71c37b4f20e369d.gz
This commit is contained in:
Evan Prodromou 2008-05-17 13:09:20 -04:00
parent 179c91b921
commit ee0056e717
1 changed files with 4 additions and 4 deletions

View File

@ -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');
}
}