Pass $reassign parameter to 'delete_user' and 'deleted_user' actions.

props genkisan.
fixes #23057.
Built from https://develop.svn.wordpress.org/trunk@27462


git-svn-id: http://core.svn.wordpress.org/trunk@27307 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2014-03-08 01:23:15 +00:00
parent 330a752417
commit 9c6504120f
1 changed files with 6 additions and 4 deletions

View File

@ -282,9 +282,10 @@ function wp_delete_user( $id, $reassign = 'novalue' ) {
* *
* @since 2.0.0 * @since 2.0.0
* *
* @param int $id User ID. * @param int $id ID of the user to delete.
* @param int|string $reassign ID of the user to reassign posts and links to. Default 'novalue'.
*/ */
do_action( 'delete_user', $id ); do_action( 'delete_user', $id, $reassign );
if ( 'novalue' === $reassign || null === $reassign ) { if ( 'novalue' === $reassign || null === $reassign ) {
$post_types_to_delete = array(); $post_types_to_delete = array();
@ -353,9 +354,10 @@ function wp_delete_user( $id, $reassign = 'novalue' ) {
* *
* @since 2.9.0 * @since 2.9.0
* *
* @param int $id ID of the deleted user. * @param int $id ID of the deleted user.
* @param int|string $reassign ID of the user to reassign posts and links to. Default 'novalue'.
*/ */
do_action( 'deleted_user', $id ); do_action( 'deleted_user', $id, $reassign );
return true; return true;
} }