summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--modules/contact.module2
-rw-r--r--modules/contact/contact.module2
2 files changed, 2 insertions, 2 deletions
diff --git a/modules/contact.module b/modules/contact.module
index 70d680504..244acad7c 100644
--- a/modules/contact.module
+++ b/modules/contact.module
@@ -121,7 +121,7 @@ function contact_mail_user() {
$form['to'] = array('#type' => 'item', '#title' => t('To'), '#value' => $account->name);
$form['subject'] = array('#type' => 'textfield', '#title' => t('Subject'), '#maxlength' => 50, '#required' => TRUE);
$form['message'] = array('#type' => 'textarea', '#title' => t('Message'), '#rows' => 15, '#required' => TRUE);
- $form['copy'] = array('#type' => 'checkbox', '#title' => ('Send me a copy.'));
+ $form['copy'] = array('#type' => 'checkbox', '#title' => t('Send me a copy.'));
$form['submit'] = array('#type' => 'submit', '#value' => t('Send e-mail'));
$output = drupal_get_form('contact_user_mail', $form);
}
diff --git a/modules/contact/contact.module b/modules/contact/contact.module
index 70d680504..244acad7c 100644
--- a/modules/contact/contact.module
+++ b/modules/contact/contact.module
@@ -121,7 +121,7 @@ function contact_mail_user() {
$form['to'] = array('#type' => 'item', '#title' => t('To'), '#value' => $account->name);
$form['subject'] = array('#type' => 'textfield', '#title' => t('Subject'), '#maxlength' => 50, '#required' => TRUE);
$form['message'] = array('#type' => 'textarea', '#title' => t('Message'), '#rows' => 15, '#required' => TRUE);
- $form['copy'] = array('#type' => 'checkbox', '#title' => ('Send me a copy.'));
+ $form['copy'] = array('#type' => 'checkbox', '#title' => t('Send me a copy.'));
$form['submit'] = array('#type' => 'submit', '#value' => t('Send e-mail'));
$output = drupal_get_form('contact_user_mail', $form);
}