diff options
author | Steven Wittens <steven@10.no-reply.drupal.org> | 2005-03-18 07:07:04 +0000 |
---|---|---|
committer | Steven Wittens <steven@10.no-reply.drupal.org> | 2005-03-18 07:07:04 +0000 |
commit | c3f1f7345ecb6ba69ec4bfc0ee1658e3fbc1aff3 (patch) | |
tree | ae04944993488152cb0fada2c0857ff67ebb8483 /modules/forum/forum.module | |
parent | ab7815c8cdcd1bbb1d2d12ec58d2c90c9ac77720 (diff) | |
download | brdo-c3f1f7345ecb6ba69ec4bfc0ee1658e3fbc1aff3.tar.gz brdo-c3f1f7345ecb6ba69ec4bfc0ee1658e3fbc1aff3.tar.bz2 |
- #18939 (Stefan): Always use paragraph tags around page help text.
Diffstat (limited to 'modules/forum/forum.module')
-rw-r--r-- | modules/forum/forum.module | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/forum/forum.module b/modules/forum/forum.module index 9414ed6d6..4c5c2f44f 100644 --- a/modules/forum/forum.module +++ b/modules/forum/forum.module @@ -12,11 +12,11 @@ function forum_help($section) { switch ($section) { case 'admin/forum': - return t('Forums and containers are used to organize the threaded discussions. Forums may be nested in each other. A container is used to group like forums together with out allowing topics to be created in the container. Containers can be nested just like forums. To delete a forum or container choose the appropriate "edit" operation.'); + return t('<p>Forums and containers are used to organize the threaded discussions. Forums may be nested in each other. A container is used to group like forums together with out allowing topics to be created in the container. Containers can be nested just like forums. To delete a forum or container choose the appropriate "edit" operation.</p>'); case 'admin/forum/add/container': - return t('Containers help you organize your forum. The job of a container is to hold, or contain, other forums that have something in common. Containers are usually placed at the top level (root) of your forum but you can also place a container within another container or forum.'); + return t('<p>Containers help you organize your forum. The job of a container is to hold, or contain, other forums that have something in common. Containers are usually placed at the top level (root) of your forum but you can also place a container within another container or forum.</p>'); case 'admin/forum/add/forum': - return t('When creating a forum you are creating an area for user to create similar topics for discussion. Forums may be nested underneath other forums or in containers.'); + return t('<p>When creating a forum you are creating an area for user to create similar topics for discussion. Forums may be nested underneath other forums or in containers.</p>'); case 'admin/modules#description': return t('Enable threaded discussions about general topics.'); case 'node/add#forum': |