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:
parent
f94f0684b1
commit
394d3b2f9b
|
@ -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>',
|
||||
|
|
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue