From 5ede340f8002802fb1ec80c96ade9bea44a644cb Mon Sep 17 00:00:00 2001 From: Andrew Ozz Date: Mon, 27 Apr 2009 11:18:04 +0000 Subject: [PATCH] Add hook for update profile, props Cimmo, fixes #9302 git-svn-id: https://develop.svn.wordpress.org/trunk@11096 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-admin/includes/user.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/wp-admin/includes/user.php b/wp-admin/includes/user.php index a56a2778a6..e64f78d572 100644 --- a/wp-admin/includes/user.php +++ b/wp-admin/includes/user.php @@ -174,6 +174,8 @@ function edit_user( $user_id = 0 ) { $errors->add( 'email_exists', __('ERROR: This email is already registered, please choose another one.'), array( 'form-field' => 'email' ) ); } + do_action('user_profile_update_errors', $errors); + if ( $errors->get_error_codes() ) return $errors;