Changeset 45107 for trunk/src/wp-admin/includes/class-wp-site-health.php
- Timestamp:
- 04/03/2019 11:00:06 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-site-health.php
r45105 r45107 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 ) … … 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 )
Note: See TracChangeset
for help on using the changeset viewer.