diff --git a/core/modules/system/system.install b/core/modules/system/system.install index d746eed522..e24828bd5b 100644 --- a/core/modules/system/system.install +++ b/core/modules/system/system.install @@ -492,17 +492,18 @@ function system_requirements($phase) { // @todo remove in https://www.drupal.org/project/drupal/issues/3203193 try { Database::getConnection()->query('SELECT JSON_TYPE(\'1\')'); - $json_message = t('Supported. Currently not required, however it will be required from Drupal 10.'); + $json_message = t('Supported'); $json_severity = REQUIREMENT_OK; } catch (\Exception $e) { - $json_message = t('Not supported. Currently not required, however it will be required from Drupal 10.'); + $json_message = t('Not supported'); $json_severity = REQUIREMENT_WARNING; } $requirements['database_support_json'] = [ 'title' => t('Database support for JSON'), 'severity' => $json_severity, 'value' => $json_message, + 'description' => t('Currently not required, however it will be required from Drupal 10.'), ]; }