Site Health: Merge duplicate "utf8mb4 requires a newer client library" strings.

Props ramiy.
Fixes #46917.
Built from https://develop.svn.wordpress.org/trunk@45196


git-svn-id: http://core.svn.wordpress.org/trunk@45005 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2019-04-13 18:18:52 +00:00
parent f94f0684b1
commit 394d3b2f9b
2 changed files with 2 additions and 2 deletions

View File

@ -1095,7 +1095,7 @@ class WP_Site_Health {
if ( version_compare( $mysql_client_version, '5.5.3', '<' ) ) {
$result['status'] = 'recommended';
$result['label'] = __( 'UTF8MB4 requires a newer client library' );
$result['label'] = __( 'utf8mb4 requires a newer client library' );
$result['description'] .= sprintf(
'<p>%s</p>',

View File

@ -13,7 +13,7 @@
*
* @global string $wp_version
*/
$wp_version = '5.2-beta3-45195';
$wp_version = '5.2-beta3-45196';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.