diff --git a/core/modules/system/system.module b/core/modules/system/system.module index 752ac1c0ae..b31ee9ee28 100644 --- a/core/modules/system/system.module +++ b/core/modules/system/system.module @@ -106,6 +106,7 @@ function system_help($route_name, RouteMatchInterface $route_match) { case 'system.themes_page': $output = '

' . t('Set and configure the default theme for your website. Alternative themes are available.', [':themes' => 'https://www.drupal.org/project/themes']) . '

'; + $output .= '' . t('You are using Drupal version @version', ['@version' => explode('.', \Drupal::VERSION, 2)[0])] . ''; if (\Drupal::moduleHandler()->moduleExists('block')) { $output .= '

' . t('You can place blocks for each theme on the block layout page.', [':blocks' => Url::fromRoute('block.admin_display')->toString()]) . '

'; } @@ -124,6 +125,7 @@ function system_help($route_name, RouteMatchInterface $route_match) { if (!\Drupal::moduleHandler()->moduleExists('update')) { $output .= '

' . t('Regularly review available updates to maintain a secure and current site. Always run the update script each time a module is updated. Enable the Update Manager module to update and install modules and themes.', [':update-php' => Url::fromRoute('system.db_update')->toString(), ':update-manager' => Url::fromRoute('system.modules_list', [], ['fragment' => 'module-update'])->toString()]) . '

'; } + $output .= '' . t('You are using Drupal version @version', ['@version' => explode('.', \Drupal::VERSION, 2)[0])] . ''; return $output; case 'system.modules_uninstall':