From 85c151cdce3d6ada3d40d346414b6054d35156e8 Mon Sep 17 00:00:00 2001 From: Steven Wittens Date: Wed, 17 Aug 2005 00:55:50 +0000 Subject: - #28728: Fix broken link in contact module help. --- modules/contact.module | 2 +- 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 your personal contact form. 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 your personal contact form. 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 your personal contact form. 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 your personal contact form. 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']); -- cgit v1.2.3