Index: modules/forum/forum.module =================================================================== RCS file: /cvs/drupal/drupal/modules/forum/forum.module,v retrieving revision 1.529 diff -p -u -p -r1.529 forum.module --- modules/forum/forum.module 1 Nov 2009 12:11:10 -0000 1.529 +++ modules/forum/forum.module 14 Nov 2009 22:51:17 -0000 @@ -12,13 +12,16 @@ function forum_help($path, $arg) { switch ($path) { case 'admin/help#forum': - $output = '

' . t('The forum module lets you create threaded discussion forums with functionality similar to other message board systems. Forums are useful because they allow community members to discuss topics with one another while ensuring those conversations are archived for later reference. The forum topic menu item (under Add new content on the Navigation menu) creates the initial post of a new threaded discussion, or thread.', array('@create-topic' => url('node/add/forum'))) . '

'; + $output = '

' . t('About') . '

'; + $output .= '

' . t('The forum module lets you create threaded discussion forums with functionality similar to other message board systems. Forums are useful because they allow community members to discuss topics with one another while ensuring those conversations are archived for later reference. The forum topic menu item (under Add new content on the Navigation menu) creates the initial post of a new threaded discussion, or thread.', array('@create-topic' => url('node/add/forum'))) . '

'; $output .= '

' . t('A threaded discussion occurs as people leave comments on a forum topic (or on other comments within that topic). A forum topic is contained within a forum, which may hold many similar or related forum topics. Forums are (optionally) nested within a container, which may hold many similar or related forums. Both containers and forums may be nested within other containers and forums, and provide structure for your message board. By carefully planning this structure, you make it easier for users to find and comment on a specific forum topic.') . '

'; - $output .= '

' . t('When administering a forum, note that:') . '

'; - $output .= ''; + $output .= '

' . t('Uses') . '

'; + $output .= '
' . t('Moving Forum Topics') . '
'; + $output .= '
' . t('A forum topic (and all of its comments) may be moved between forums by selecting a different forum while editing a forum topic. When moving a forum topic between forums, the Leave shadow copy option creates a link in the original forum pointing to the new location.') . '
'; + $output .= '
' . t('Locking Comments') . '
'; + $output .= '
' . t('Selecting Closed under Comment settings while editing a forum topic will lock (prevent new comments) on the thread.') . '
'; + $output .= '
' . t('Disabling Comments') . '
'; + $output .= '
' . t('Selecting Disabled under Comment settings while editing a forum topic will hide all existing comments on the thread, and prevent new ones.') . '
'; $output .= '

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

'; return $output; case 'admin/structure/forum':