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
This commit is contained in:
Jonathan Desrosiers
2020-11-03 17:53:34 +00:00
parent aef5ef26cd
commit cd369595fe
+1 -1
View File
@@ -313,7 +313,7 @@ function core_auto_updates_settings() {
} else {
update_site_option( 'auto_update_core_major', 0 );
}
echo '<div class="notice notice-info is-dismissible"><p>';
echo '<div class="notice notice-success is-dismissible"><p>';
_e( 'WordPress auto-update settings updated.' );
echo '</p></div>';
}