From 119141276c54bccd18becf8c3dd673e93eb22ddd Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Thu, 28 May 2009 08:31:11 +0000 Subject: [PATCH] - Patch #339417 by yoroy, Shawn DeArmond, JamesAn: added some extra comment documentation. --- modules/comment/comment.module | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/comment/comment.module b/modules/comment/comment.module index 5fd1edd6f45..ac2a38034f1 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 = '

' . t('The comment module allows visitors to comment on your posts, creating ad hoc discussion boards. Any content type may have its Default comment setting set to Open to allow comments, Hidden to hide existing comments and prevent new comments or Closed 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'))) . '

'; $output .= '

' . 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.') . '

'; + $output .= '

' . t('Change comment settings on the content type\'s edit page.', array('@content-type' => url('admin/build/types'))) . '

'; $output .= '

' . t('For more information, see the online handbook entry for Comment module.', array('@comment' => 'http://drupal.org/handbook/modules/comment/')) . '

'; return $output;