diff --git a/core/modules/forum/forum.module b/core/modules/forum/forum.module index 95ebe76..2109e3d 100644 --- a/core/modules/forum/forum.module +++ b/core/modules/forum/forum.module @@ -29,15 +29,15 @@ function forum_help($path, $arg) { $output .= ''; $output .= ''; $output .= ''; - $output .= '

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

'; + $output .= '

' . t('For more information, see the online documentation for the Forum module.', array('!forum' => 'https://drupal.org/documentation/modules/forum')) . '

'; $output .= '

' . t('Uses') . '

'; $output .= '
'; $output .= '
' . t('Setting up forum structure') . '
'; - $output .= '
' . t('Visit the Forums page to set up containers and forums to hold your discussion topics.', array('@forums' => url('admin/structure/forum'))) . '
'; + $output .= '
' . t('Visit the Forums page to set up containers and forums to hold your discussion topics.', array('!forums' => \Drupal::url('forum.overview'))) . '
'; $output .= '
' . t('Starting a discussion') . '
'; - $output .= '
' . t('The Forum topic link on the Add new content page creates the first post of a new threaded discussion, or thread.', array('@create-topic' => url('node/add/forum'), '@content-add' => url('node/add'))) . '
'; - $output .= '
' . t('Forum navigation') . '
'; - $output .= '
' . t('Enabling the Forum module provides a default Forums menu item in the Tools menu that links to the Forums page.', array('@forums' => url('forum'))) . '
'; + $output .= '
' . t('The Forum topic link on the Add new content page creates the first post of a new threaded discussion, or thread.', array('!create-topic' => \Drupal::url('node.add', array('node_type' => 'forum')), '!content-add' => \Drupal::url('node.add_page'))) . '
'; + $output .= '
' . t('Navigating in the Forum') . '
'; + $output .= '
' . t('Enabling the Forum module provides a default Forums menu item in the Tools menu that links to the Forums page.', array('!forums' => \Drupal::url('forum.index'))) . '
'; $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 and disabling comments') . '
'; @@ -65,7 +65,7 @@ function forum_help($path, $arg) { case 'admin/structure/forum/add/forum': return '

' . t('A forum holds related forum topics.') . '

'; case 'admin/structure/forum/settings': - return '

' . t('Adjust the display of your forum topics. Organize the forums on the forum structure page.', array('@forum-structure' => url('admin/structure/forum'))) . '

'; + return '

' . t('Adjust the display of your forum topics. Organize the forums on the forum structure page.', array('!forum-structure' => \Drupal::url('forum.overview'))) . '

'; } }