diff options
author | Lauri Eskola <lauri.eskola@acquia.com> | 2024-01-15 14:55:37 +0200 |
---|---|---|
committer | Lauri Eskola <lauri.eskola@acquia.com> | 2024-01-15 14:55:37 +0200 |
commit | 1e8ae69e1d8808e50c19ae5120c905dff37b426e (patch) | |
tree | 47d4f872146ee257f692dd62f940a28b2e1cee74 /core/modules/mysql/mysql.module | |
parent | 4b5138e6c32060f9568e9758769c186cd0771e14 (diff) | |
download | drupal-1e8ae69e1d8808e50c19ae5120c905dff37b426e.tar.gz drupal-1e8ae69e1d8808e50c19ae5120c905dff37b426e.zip |
Issue #3414263 by quietone, andypost: Change help headings for WCAG 2.0
Diffstat (limited to 'core/modules/mysql/mysql.module')
-rw-r--r-- | core/modules/mysql/mysql.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/modules/mysql/mysql.module b/core/modules/mysql/mysql.module index 3a68ca95e913..746647d032ed 100644 --- a/core/modules/mysql/mysql.module +++ b/core/modules/mysql/mysql.module @@ -14,7 +14,7 @@ function mysql_help($route_name, RouteMatchInterface $route_match) { switch ($route_name) { case 'help.page.mysql': $output = ''; - $output .= '<h3>' . t('About') . '</h3>'; + $output .= '<h2>' . t('About') . '</h2>'; $output .= '<p>' . t('The MySQL module provides the connection between Drupal and a MySQL, MariaDB or equivalent database. For more information, see the <a href=":mysql">online documentation for the MySQL module</a>.', [':mysql' => 'https://www.drupal.org/docs/core-modules-and-themes/core-modules/mysql-module']) . '</p>'; return $output; |