Correct the hook docs for the user_profile_update_errors action.

Fixes #33537
Props yamchhetri

Built from https://develop.svn.wordpress.org/trunk@33769


git-svn-id: http://core.svn.wordpress.org/trunk@33737 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
John Blackbourn 2015-08-27 17:16:21 +00:00
parent 4affa545d0
commit a60d143f7b
2 changed files with 4 additions and 4 deletions

View File

@ -163,9 +163,9 @@ function edit_user( $user_id = 0 ) {
*
* @since 2.8.0
*
* @param array &$errors An array of user profile update errors, passed by reference.
* @param bool $update Whether this is a user update.
* @param WP_User &$user WP_User object, passed by reference.
* @param WP_Error &$errors WP_Error object, passed by reference.
* @param bool $update Whether this is a user update.
* @param WP_User &$user WP_User object, passed by reference.
*/
do_action_ref_array( 'user_profile_update_errors', array( &$errors, $update, &$user ) );

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '4.4-alpha-33768';
$wp_version = '4.4-alpha-33769';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.