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/node | |
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/node')
-rw-r--r-- | modules/node/node.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/node/node.module b/modules/node/node.module index 9f0508c76..6338105d8 100644 --- a/modules/node/node.module +++ b/modules/node/node.module @@ -2210,7 +2210,7 @@ function node_form(&$form_state, $node) { ); $form['buttons']['submit'] = array( '#type' => 'submit', - '#value' => t('Submit'), + '#value' => t('Save'), '#weight' => 10, '#submit' => array('node_form_submit'), ); |