diff options
author | Dries Buytaert <dries@buytaert.net> | 2006-11-28 09:48:45 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2006-11-28 09:48:45 +0000 |
commit | f94622db5dd197875a3191d07ab08fee73cb93de (patch) | |
tree | be6a8a674c11ec655d66dbae58ebc77ce416f3b3 | |
parent | b2b2431947dabbcf43fe58baa11fa6b0133d7027 (diff) | |
download | brdo-f94622db5dd197875a3191d07ab08fee73cb93de.tar.gz brdo-f94622db5dd197875a3191d07ab08fee73cb93de.tar.bz2 |
- Patch #99948 by neclimdul: added some help text.
-rw-r--r-- | modules/forum/forum.module | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/forum/forum.module b/modules/forum/forum.module index 07057f4f2..e12a5b6ca 100644 --- a/modules/forum/forum.module +++ b/modules/forum/forum.module @@ -23,6 +23,8 @@ function forum_help($section) { return '<p>'. t('Containers help you organize your forums. The job of a container is to hold, or contain, other forums that are related. For example, a container named "Food" might hold two forums named "Fruit" and "Vegetables".') .'</p>'; case 'admin/content/forum/add/forum': return '<p>'. t('A forum holds discussion topics that are related. For example, a forum named "Fruit" might contain topics titled "Apples" and "Bananas".') .'</p>'; + case 'admin/content/forum/settings': + return '<p>'. t('These settings provide the ability to fine tune the display of your forum topics.') .'</p>'; } } |