summaryrefslogtreecommitdiff
path: root/modules/contact
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2009-05-10 18:24:06 +0000
committerDries Buytaert <dries@buytaert.net>2009-05-10 18:24:06 +0000
commit28afeba170e3c5017110c5abf1d727c9cbdd78cd (patch)
treec681170973db34b0ed677eb2c1db5b8a144b12c1 /modules/contact
parent2c71644dbcf51f1d5be49e2163330cb9121a7b0e (diff)
downloadbrdo-28afeba170e3c5017110c5abf1d727c9cbdd78cd.tar.gz
brdo-28afeba170e3c5017110c5abf1d727c9cbdd78cd.tar.bz2
- Patch #295971 by deekayen: option for user contact options is badly phrased.
Diffstat (limited to 'modules/contact')
-rw-r--r--modules/contact/contact.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/contact/contact.module b/modules/contact/contact.module
index a93f7836f..6a2cc1860 100644
--- a/modules/contact/contact.module
+++ b/modules/contact/contact.module
@@ -149,7 +149,7 @@ function contact_user_form(&$edit, &$user, $category = NULL) {
$form['contact']['contact'] = array('#type' => 'checkbox',
'#title' => t('Personal contact form'),
'#default_value' => !empty($edit['contact']) ? $edit['contact'] : FALSE,
- '#description' => t('Allow other users to contact you by e-mail via <a href="@url">your personal contact form</a>. Note that while your e-mail address is not made public to other members of the community, privileged users such as site administrators are able to contact you even if you choose not to enable this feature.', array('@url' => url("user/$user->uid/contact"))),
+ '#description' => t('Allow other users to contact you via a <a href="@url">personal contact form</a> which keeps your e-mail address hidden. Note that some privileged users such as site administrators are still able to contact you even if you choose to disable this feature.', array('@url' => url("user/$user->uid/contact"))),
);
return $form;
}