diff options
author | Gábor Hojtsy <gabor@hojtsy.hu> | 2007-07-16 12:43:06 +0000 |
---|---|---|
committer | Gábor Hojtsy <gabor@hojtsy.hu> | 2007-07-16 12:43:06 +0000 |
commit | 64def7cb3e97672797bc91e2ac6352cdcccf9937 (patch) | |
tree | e994c0bdc4ac01746fd9f2e14bee6cf0e8bc20ee /modules/user/user.module | |
parent | 4a65afa1321c98cfe9dd6b01857a10c33c358a20 (diff) | |
download | brdo-64def7cb3e97672797bc91e2ac6352cdcccf9937.tar.gz brdo-64def7cb3e97672797bc91e2ac6352cdcccf9937.tar.bz2 |
#100641 by kkaefer, ChrisKennedy and RobRoy: change 'Submit' buttons to 'Save' to compliy with the desktop metaphor and actually tell what the button does ('we know it submits the form, but what it does?')
Diffstat (limited to 'modules/user/user.module')
-rw-r--r-- | modules/user/user.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/user/user.module b/modules/user/user.module index 89f40ede4..07150daf1 100644 --- a/modules/user/user.module +++ b/modules/user/user.module @@ -1614,7 +1614,7 @@ function user_edit($form_state, $category = 'account') { $form = _user_forms($edit, $account, $category); $form['_category'] = array('#type' => 'value', '#value' => $category); $form['_account'] = array('#type' => 'value', '#value' => $account); - $form['submit'] = array('#type' => 'submit', '#value' => t('Submit'), '#weight' => 30); + $form['submit'] = array('#type' => 'submit', '#value' => t('Save'), '#weight' => 30); if (user_access('administer users')) { $form['delete'] = array('#type' => 'submit', '#value' => t('Delete'), '#weight' => 31); } |