1241 | | /* translators: 1: The database engine in use (MySQL or MariaDB). 2: Database server recommended version number. */ |
1242 | | __( 'For optimal performance and security reasons, you should consider running %1$s version %2$s or higher. Contact your web hosting company to correct this.' ), |
1243 | | ( $this->is_mariadb ? 'MariaDB' : 'MySQL' ), |
| 1241 | /* translators: 1: The version number of the database engine in use. 2: The database engine in use (MySQL or MariaDB). 3: Database server recommended version number. */ |
| 1242 | __( 'Your version is %1$s. For optimal performance and security reasons, you should consider running %2$s version %3$s or higher. Contact your web hosting company to correct this.' ), |
| 1243 | //$wpdb->get_var( 'SELECT VERSION()' ), |
| 1244 | $this->mysql_server_version, |
| 1245 | $this->is_mariadb ? 'MariaDB' : 'MySQL', |