diff options
author | Dries Buytaert <dries@buytaert.net> | 2004-01-11 20:31:26 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2004-01-11 20:31:26 +0000 |
commit | a8b8c247db070d96a663ab8bb57a40ead173300a (patch) | |
tree | 959b434490bbc22d4f73ded0adbaff21600a7262 /modules/profile/profile.module | |
parent | 5ac59aacd2c5d60155b7236c588bed2e750b3e04 (diff) | |
download | brdo-a8b8c247db070d96a663ab8bb57a40ead173300a.tar.gz brdo-a8b8c247db070d96a663ab8bb57a40ead173300a.tar.bz2 |
- Patch #5021: clean up URLs in _help texts. Patch by UnConeD.
Diffstat (limited to 'modules/profile/profile.module')
-rw-r--r-- | modules/profile/profile.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/profile/profile.module b/modules/profile/profile.module index eca4a3e75..adf8af224 100644 --- a/modules/profile/profile.module +++ b/modules/profile/profile.module @@ -45,7 +45,7 @@ function profile_help($section) { $output = t("Support for configurable user profiles."); break; case 'admin/system/modules/profile': - $output = t("When a user creates an account you can ask for some extra information, as well as letting the user have a small picture, called an avatar.<br />Notes:<ul><li>In order for a user to enter information you <strong>must</strong> check \"enable\".</li><li>In order for other people too see the entered information you must make it \"public\".</li><li>If an item is \"public\", but not enabled, the user can never give it a value and it will never be seen. Public does <strong>not</strong> imply \"enable\".</li><li>If an item is enabled, but not shown in the registration form the user will have to %edit to place information in the field.</ul>", array("%edit" => l(t("edit their account"), "user/edit"))); + $output = t("When a user creates an account you can ask for some extra information, as well as letting the user have a small picture, called an avatar.<br />Notes:<ul><li>In order for a user to enter information you <strong>must</strong> check \"enable\".</li><li>In order for other people too see the entered information you must make it \"public\".</li><li>If an item is \"public\", but not enabled, the user can never give it a value and it will never be seen. Public does <strong>not</strong> imply \"enable\".</li><li>If an item is enabled, but not shown in the registration form the user will have to <a href=\"%edit\">edit their account</a> to place information in the field.</ul>", array("%edit" => url("user/edit"))); break; } return $output; |