From 7833be2a70543287520ae15a55faf36ee29eb40e Mon Sep 17 00:00:00 2001 From: Alex Pott Date: Sun, 26 Jan 2014 00:55:53 +0100 Subject: [PATCH] Issue #2029767 folllowup by Mark Conroy, batigolix, ifrik: Improve hook_help for history module. --- core/modules/history/history.module | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/modules/history/history.module b/core/modules/history/history.module index cf9278b0245..88a60c737c8 100644 --- a/core/modules/history/history.module +++ b/core/modules/history/history.module @@ -27,7 +27,7 @@ function history_help($path, $arg) { 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 Views 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. It marks content as new or updated depending on the last time the user viewed it. History records that are older than one month are removed during cron, which means that content older than one month is always considered read. The History module does not have a user interface but it provides a filter to Views to show new or updated content. 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; } }