diff -u b/core/modules/history/history.module b/core/modules/history/history.module --- b/core/modules/history/history.module +++ b/core/modules/history/history.module @@ -27,7 +27,7 @@ switch ($path) { case 'admin/help#history': $output = '

' . t('About') . '

'; - $output .= '

' . t('The History module keeps track of which content a user has read. Its data is available through the Views module. The History module marks content as new or updated depending on the last time the user viewed that content. It also provides a filter to the Views module to show new or updated content. History records older than one month will be removed during cron. This means that content older than one month will always be considered read. The module does not provide a user interface. For more information, see the online documentation for the History module.', array('!views-help' => \Drupal::url('help.page', array ('name' => 'views')), '!url' => 'https://drupal.org/documentation/modules/history')) . '

'; + $output .= '

' . t('The History module keeps track of which content a user has read. Its data is available through the Views module. The History module keeps track of content as new or updated depending on the last time the user viewed that content. It also provides a filter to the Views module to show new or updated content. History records older than one month will be removed during cron. This means that content older than one month will always be considered read. The module does not provide its own user interface, but instead makes its data available through the Views module. For more information, see the online documentation for the History module.', array('!views-help' => \Drupal::url('help.page', array ('name' => 'views')), '!url' => 'https://drupal.org/documentation/modules/history')) . '

'; return $output; } }