Ticket #60670: 60670.diff
File 60670.diff, 970 bytes (added by , 9 months ago) |
---|
-
wp-admin/includes/class-wp-site-health.php
1239 1239 '<p>%s</p>', 1240 1240 sprintf( 1241 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' ), 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 $this->mysql_server_version, 1244 $this->is_mariadb ? 'MariaDB' : 'MySQL', 1244 1245 $this->mysql_recommended_version 1245 1246 ) 1246 1247 );