From cd369595fe1823f377503931a5952ce601143668 Mon Sep 17 00:00:00 2001 From: Jonathan Desrosiers Date: Tue, 3 Nov 2020 17:53:34 +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. git-svn-id: https://develop.svn.wordpress.org/trunk@49490 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/update-core.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-admin/update-core.php b/src/wp-admin/update-core.php index 7d96ece0f9..c08e57f6e9 100644 --- a/src/wp-admin/update-core.php +++ b/src/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 '

'; }