diff --git a/wp-admin/includes/class-wp-site-health.php b/wp-admin/includes/class-wp-site-health.php
index f758ad2b98..2832803073 100644
a
|
b
|
class WP_Site_Health { |
928 | 928 | sprintf( |
929 | 929 | /* translators: 1: The database engine in use (MySQL or MariaDB). 2: Database server recommended version number. */ |
930 | 930 | __( 'For optimal performance and security reasons, we recommend running %1$s version %2$s or higher. Contact your web hosting company to correct this.' ), |
931 | | ( $this->mariadb ? 'MariaDB' : 'MySQL' ), |
| 931 | ( $this->is_mariadb ? 'MariaDB' : 'MySQL' ), |
932 | 932 | $this->health_check_mysql_rec_version |
933 | 933 | ) |
934 | 934 | ); |
… |
… |
class WP_Site_Health { |
944 | 944 | sprintf( |
945 | 945 | /* translators: 1: The database engine in use (MySQL or MariaDB). 2: Database server minimum version number. */ |
946 | 946 | __( 'WordPress requires %1$s version %2$s or higher. Contact your web hosting company to correct this.' ), |
947 | | ( $this->mariadb ? 'MariaDB' : 'MySQL' ), |
| 947 | ( $this->is_mariadb ? 'MariaDB' : 'MySQL' ), |
948 | 948 | $this->health_check_mysql_required_version |
949 | 949 | ) |
950 | 950 | ); |