From 5392af9208056b2ec014fb17cb65de8743fdddd3 Mon Sep 17 00:00:00 2001 From: desrosj Date: Tue, 3 Nov 2020 17:55:06 +0000 Subject: [PATCH] Upgrade/Install: Change the notice displayed after saving auto-update settings to `.notice-success`. This better conveys the message of the notice and brings consistency with other success notices throughout Core. Props audrasjb. Fixes #51701. Built from https://develop.svn.wordpress.org/trunk@49490 git-svn-id: http://core.svn.wordpress.org/trunk@49249 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/update-core.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-admin/update-core.php b/wp-admin/update-core.php index 7d96ece0f9..c08e57f6e9 100644 --- a/wp-admin/update-core.php +++ b/wp-admin/update-core.php @@ -313,7 +313,7 @@ function core_auto_updates_settings() { } else { update_site_option( 'auto_update_core_major', 0 ); } - echo '

'; + echo '

'; _e( 'WordPress auto-update settings updated.' ); echo '

'; } diff --git a/wp-includes/version.php b/wp-includes/version.php index 3597ff7a1c..355159b822 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.6-beta3-49489'; +$wp_version = '5.6-beta3-49490'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.