From f18b173674f996a51f5da5c56bbc6b48b17d8149 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Mon, 13 Jan 2020 17:00:06 +0000 Subject: [PATCH] Networks and Sites: Use `warning` styles for 'Caution' and 'Warning' messages during Multisite installation. Props dlh. Fixes #49186. Built from https://develop.svn.wordpress.org/trunk@47067 git-svn-id: http://core.svn.wordpress.org/trunk@46867 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/includes/network.php | 4 ++-- wp-includes/version.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/wp-admin/includes/network.php b/wp-admin/includes/network.php index 3f29c71b86..7fe03dc472 100644 --- a/wp-admin/includes/network.php +++ b/wp-admin/includes/network.php @@ -122,7 +122,7 @@ function network_step1( $errors = false ) { $active_plugins = get_option( 'active_plugins' ); if ( ! empty( $active_plugins ) ) { - echo '

' . __( 'Warning:' ) . ' ' . sprintf( + echo '

' . __( 'Warning:' ) . ' ' . sprintf( /* translators: %s: URL to Plugins screen. */ __( 'Please deactivate your plugins before enabling the Network feature.' ), admin_url( 'plugins.php?plugin_status=active' ) @@ -434,7 +434,7 @@ function network_step2( $errors = false ) { ?>

-

+

' . __( 'Caution:' ) . ' '; diff --git a/wp-includes/version.php b/wp-includes/version.php index 09b862973c..a00cbef0f1 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.4-alpha-47066'; +$wp_version = '5.4-alpha-47067'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.