From 892e5dd68e0f53c50e250ecfa42b6ec7dd5f0b84 Mon Sep 17 00:00:00 2001 From: desrosj Date: Tue, 8 Jun 2021 22:54:57 +0000 Subject: [PATCH] Administration: Adjust Internet Explorer message to be a bit more clear. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This moves “Internet Explorer” to the beginning of the sentence introduced in [51117] to make the reason the user is seeing this message more clear. Props chanthaboune, jeffpaul, desrosj. Fixes #48743. Built from https://develop.svn.wordpress.org/trunk@51119 git-svn-id: http://core.svn.wordpress.org/trunk@50728 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/includes/dashboard.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-admin/includes/dashboard.php b/wp-admin/includes/dashboard.php index 950c4aadce..dc5b12f5fb 100644 --- a/wp-admin/includes/dashboard.php +++ b/wp-admin/includes/dashboard.php @@ -1671,7 +1671,7 @@ function wp_dashboard_browser_nag() { if ( $response ) { if ( $is_IE ) { - $msg = __( "For the best WordPress experience, please use Microsoft Edge or another modern browser instead of Internet Explorer." ); + $msg = __( "Internet Explorer does not give you the best WordPress experience. Switch to Microsoft Edge, or another more modern browser to get the most from your site." ); } elseif ( $response['insecure'] ) { $msg = sprintf( /* translators: %s: Browser name and link. */ diff --git a/wp-includes/version.php b/wp-includes/version.php index d3b8ebf284..8c65d7f848 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.8-alpha-51118'; +$wp_version = '5.8-alpha-51119'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.