summaryrefslogtreecommitdiffstatshomepage
path: root/core/modules/tracker/tracker.module
diff options
context:
space:
mode:
authorLauri Eskola <lauri.eskola@acquia.com>2024-01-15 14:55:37 +0200
committerLauri Eskola <lauri.eskola@acquia.com>2024-01-15 14:55:37 +0200
commit1e8ae69e1d8808e50c19ae5120c905dff37b426e (patch)
tree47d4f872146ee257f692dd62f940a28b2e1cee74 /core/modules/tracker/tracker.module
parent4b5138e6c32060f9568e9758769c186cd0771e14 (diff)
downloaddrupal-1e8ae69e1d8808e50c19ae5120c905dff37b426e.tar.gz
drupal-1e8ae69e1d8808e50c19ae5120c905dff37b426e.zip
Issue #3414263 by quietone, andypost: Change help headings for WCAG 2.0
Diffstat (limited to 'core/modules/tracker/tracker.module')
-rw-r--r--core/modules/tracker/tracker.module4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/modules/tracker/tracker.module b/core/modules/tracker/tracker.module
index 8dbc5ac2f27..10ae492cffe 100644
--- a/core/modules/tracker/tracker.module
+++ b/core/modules/tracker/tracker.module
@@ -18,9 +18,9 @@ use Drupal\node\NodeInterface;
function tracker_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
case 'help.page.tracker':
- $output = '<h3>' . t('About') . '</h3>';
+ $output = '<h2>' . t('About') . '</h2>';
$output .= '<p>' . t('The Activity Tracker module displays the most recently added and updated content on your site, and allows you to follow new content created by each user. This module has no configuration options. For more information, see the <a href=":tracker">online documentation for the Activity Tracker module</a>.', [':tracker' => 'https://www.drupal.org/documentation/modules/tracker']) . '</p>';
- $output .= '<h3>' . t('Uses') . '</h3>';
+ $output .= '<h2>' . t('Uses') . '</h2>';
$output .= '<dl>';
$output .= '<dt>' . t('Tracking new and updated site content') . '</dt>';
$output .= '<dd>' . t('The <a href=":recent">Recent content</a> page shows new and updated content in reverse chronological order, listing the content type, title, author\'s name, number of comments, and time of last update. Content is considered updated when changes occur in the text, or when new comments are added. The <em>My recent content</em> tab limits the list to the currently logged-in user.', [':recent' => Url::fromRoute('tracker.page')->toString()]) . '</dd>';