From b51f60de6da354aabaecacd5cb3b76a538b56379 Mon Sep 17 00:00:00 2001 From: John Blackbourn Date: Mon, 14 Aug 2017 19:42:43 +0000 Subject: [PATCH] Users: Display the "Your email address has not been updated yet" message when a user changes their profile email address from within network admin. This ensures continuity with the regular profile editing screen and the user admin profile editing screen. Fixes #41635 Built from https://develop.svn.wordpress.org/trunk@41253 git-svn-id: http://core.svn.wordpress.org/trunk@41093 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/includes/ms-admin-filters.php | 1 + wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/wp-admin/includes/ms-admin-filters.php b/wp-admin/includes/ms-admin-filters.php index 20dc77e7c2..62785505a0 100644 --- a/wp-admin/includes/ms-admin-filters.php +++ b/wp-admin/includes/ms-admin-filters.php @@ -12,6 +12,7 @@ add_filter( 'wp_handle_upload_prefilter', 'check_upload_size' ); // User Hooks add_action( 'user_admin_notices', 'new_user_email_admin_notice' ); +add_action( 'network_admin_notices', 'new_user_email_admin_notice' ); add_action( 'admin_page_access_denied', '_access_denied_splash', 99 ); diff --git a/wp-includes/version.php b/wp-includes/version.php index 06738bbfea..cfaf5b82e0 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.9-alpha-41252'; +$wp_version = '4.9-alpha-41253'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.