summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2009-05-28 08:31:11 +0000
committerDries Buytaert <dries@buytaert.net>2009-05-28 08:31:11 +0000
commit119141276c54bccd18becf8c3dd673e93eb22ddd (patch)
tree374e0bbae3e0409d2a35a32bb868cbaef1a9bd00 /modules
parent7558e1de806876a5ad603412df70aae574805a46 (diff)
downloadbrdo-119141276c54bccd18becf8c3dd673e93eb22ddd.tar.gz
brdo-119141276c54bccd18becf8c3dd673e93eb22ddd.tar.bz2
- Patch #339417 by yoroy, Shawn DeArmond, JamesAn: added some extra comment documentation.
Diffstat (limited to 'modules')
-rw-r--r--modules/comment/comment.module1
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/comment/comment.module b/modules/comment/comment.module
index 5fd1edd6f..ac2a38034 100644
--- a/modules/comment/comment.module
+++ b/modules/comment/comment.module
@@ -98,6 +98,7 @@ function comment_help($path, $arg) {
case 'admin/help#comment':
$output = '<p>' . t('The comment module allows visitors to comment on your posts, creating ad hoc discussion boards. Any <a href="@content-type">content type</a> may have its <em>Default comment setting</em> set to <em>Open</em> to allow comments, <em>Hidden</em> to hide existing comments and prevent new comments or <em>Closed</em> to allow existing comments to be viewed but no new comments added. Comment display settings and other controls may also be customized for each content type.', array('@content-type' => url('admin/build/types'))) . '</p>';
$output .= '<p>' . t('Comment permissions are assigned to user roles, and are used to determine whether anonymous users (or other roles) are allowed to comment on posts. If anonymous users are allowed to comment, their individual contact information may be retained in cookies stored on their local computer for use in later comment submissions. When a comment has no replies, it may be (optionally) edited by its author. The comment module uses the same text formats and HTML tags available when creating other forms of content.') . '</p>';
+ $output .= '<p>' . t('Change comment settings on the content type\'s <a href="@content-type">edit page</a>.', array('@content-type' => url('admin/build/types'))) . '</p>';
$output .= '<p>' . t('For more information, see the online handbook entry for <a href="@comment">Comment module</a>.', array('@comment' => 'http://drupal.org/handbook/modules/comment/')) . '</p>';
return $output;