diff options
-rw-r--r-- | actions/password.php | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/actions/password.php b/actions/password.php index 63b99c623..4174b6d01 100644 --- a/actions/password.php +++ b/actions/password.php @@ -36,13 +36,10 @@ class PasswordAction extends SettingsAction { common_password('confirm', _t('Confirm')); common_element('input', array('name' => 'submit', 'type' => 'submit', - 'id' => 'submit'), - _t('Login')); - common_element('input', array('name' => 'cancel', - 'type' => 'button', - 'id' => 'cancel'), - _t('Cancel')); + 'id' => 'submit', + 'value' => _t('Change'))); common_element_end('form'); + common_show_footer(); } function handle_post() { |