From: Evan Prodromou Date: Sat, 17 May 2008 17:09:20 +0000 (-0400) Subject: buttons work right X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=ee0056e7178e933e460fb99256f8156753587928;p=quix0rs-gnu-social.git buttons work right darcs-hash:20080517170920-84dde-150c051a92f5af4189e55539d71c37b4f20e369d.gz --- diff --git a/actions/register.php b/actions/register.php index af5a8ca2dd..908ae80cde 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'); } }