From f585095db4f1c0ffa11e45085ca9c0739a86d7de Mon Sep 17 00:00:00 2001 From: John Blackbourn Date: Mon, 14 Aug 2017 19:41:35 +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 git-svn-id: https://develop.svn.wordpress.org/trunk@41253 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/includes/ms-admin-filters.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/wp-admin/includes/ms-admin-filters.php b/src/wp-admin/includes/ms-admin-filters.php index 20dc77e7c2..62785505a0 100644 --- a/src/wp-admin/includes/ms-admin-filters.php +++ b/src/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 );