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/forum/forum.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/forum/forum.module')
-rw-r--r-- | modules/forum/forum.module | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/forum/forum.module b/modules/forum/forum.module index 92c8dabb9..3ff3354cc 100644 --- a/modules/forum/forum.module +++ b/modules/forum/forum.module @@ -475,7 +475,7 @@ function forum_form_container(&$form_state, $edit = array()) { ); $form['submit'] = array( '#type' => 'submit', - '#value' => t('Submit') + '#value' => t('Save') ); if ($edit['tid']) { $form['delete'] = array('#type' => 'submit', '#value' => t('Delete')); @@ -534,7 +534,7 @@ function forum_form_forum(&$form_state, $edit = array()) { ); $form['vid'] = array('#type' => 'hidden', '#value' => variable_get('forum_nav_vocabulary', '')); - $form['submit' ] = array('#type' => 'submit', '#value' => t('Submit')); + $form['submit' ] = array('#type' => 'submit', '#value' => t('Save')); if ($edit['tid']) { $form['delete'] = array('#type' => 'submit', '#value' => t('Delete')); $form['tid'] = array('#type' => 'hidden', '#value' => $edit['tid']); |