diff options
author | Steven Wittens <steven@10.no-reply.drupal.org> | 2005-08-17 00:55:50 +0000 |
---|---|---|
committer | Steven Wittens <steven@10.no-reply.drupal.org> | 2005-08-17 00:55:50 +0000 |
commit | 85c151cdce3d6ada3d40d346414b6054d35156e8 (patch) | |
tree | 958e305322ee0239e2d020dc65c6597e2fddaa7c | |
parent | 1d29abfe344fdb25964d666d880ac44342f63122 (diff) | |
download | brdo-85c151cdce3d6ada3d40d346414b6054d35156e8.tar.gz brdo-85c151cdce3d6ada3d40d346414b6054d35156e8.tar.bz2 |
- #28728: Fix broken link in contact module help.
-rw-r--r-- | modules/contact.module | 2 | ||||
-rw-r--r-- | modules/contact/contact.module | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/modules/contact.module b/modules/contact.module index 62e302898..6a23ba2fb 100644 --- a/modules/contact.module +++ b/modules/contact.module @@ -68,7 +68,7 @@ function contact_settings() { */ function contact_user($type, $edit, &$user, $category = NULL) { if ($type == 'form' && $category == 'account') { - return array(array('title' => t('Contact settings'), 'data' => form_checkbox(t('Personal contact form'), 'contact', 1, $edit['contact'], t('Allow other users to contact you by e-mail via <a href="%url">your personal contact form</a>. Note that your e-mail address is not made public and that privileged users such as site administrators are able to contact you even if you choose not to enable this feature.', array('%url' => "user/$user->uid/contact"))), 'weight' => 2)); + return array(array('title' => t('Contact settings'), 'data' => form_checkbox(t('Personal contact form'), 'contact', 1, $edit['contact'], t('Allow other users to contact you by e-mail via <a href="%url">your personal contact form</a>. Note that your e-mail address is not made public and that 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")))), 'weight' => 2)); } if ($type == 'validate') { return array('contact' => $edit['contact']); diff --git a/modules/contact/contact.module b/modules/contact/contact.module index 62e302898..6a23ba2fb 100644 --- a/modules/contact/contact.module +++ b/modules/contact/contact.module @@ -68,7 +68,7 @@ function contact_settings() { */ function contact_user($type, $edit, &$user, $category = NULL) { if ($type == 'form' && $category == 'account') { - return array(array('title' => t('Contact settings'), 'data' => form_checkbox(t('Personal contact form'), 'contact', 1, $edit['contact'], t('Allow other users to contact you by e-mail via <a href="%url">your personal contact form</a>. Note that your e-mail address is not made public and that privileged users such as site administrators are able to contact you even if you choose not to enable this feature.', array('%url' => "user/$user->uid/contact"))), 'weight' => 2)); + return array(array('title' => t('Contact settings'), 'data' => form_checkbox(t('Personal contact form'), 'contact', 1, $edit['contact'], t('Allow other users to contact you by e-mail via <a href="%url">your personal contact form</a>. Note that your e-mail address is not made public and that 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")))), 'weight' => 2)); } if ($type == 'validate') { return array('contact' => $edit['contact']); |