From 64def7cb3e97672797bc91e2ac6352cdcccf9937 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A1bor=20Hojtsy?= Date: Mon, 16 Jul 2007 12:43:06 +0000 Subject: #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?') --- modules/forum/forum.module | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'modules/forum') 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']); -- cgit v1.2.3