From c3cf3747b0a568d4f0e9a8c1e53bf421eb0c820d Mon Sep 17 00:00:00 2001 From: Peter Wilson Date: Fri, 7 Aug 2026 10:02:58 +1000 Subject: [PATCH] Reorder docblock for `send_confirmation_on_profile_email()`. --- src/wp-includes/user.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/wp-includes/user.php b/src/wp-includes/user.php index 76bce3966feb2..539240a42e9d2 100644 --- a/src/wp-includes/user.php +++ b/src/wp-includes/user.php @@ -3860,9 +3860,9 @@ function _wp_get_current_user() { * @since 4.9.0 This function was moved from wp-admin/includes/ms.php so it's no longer Multisite specific. * @since 7.0.3 Added the `$user_id` parameter, which is sent with the `personal_options_update` action. * - * @param int $user_id Optional. The ID of the user whose email is being changed. Defaults to `$_POST['user_id']` if set, otherwise 0. - * * @global WP_Error $errors WP_Error object. + * + * @param int $user_id Optional. The ID of the user whose email is being changed. Defaults to `$_POST['user_id']` if set, otherwise 0. */ function send_confirmation_on_profile_email( $user_id = 0 ) { global $errors;