From 3d030132aec337f9439790388841454c5509afa5 Mon Sep 17 00:00:00 2001 From: Gary Pendergast Date: Wed, 9 Jan 2019 04:32:59 +0000 Subject: [PATCH] Privacy: Fix a code formatting error introduced in [44491]. See #44908. git-svn-id: https://develop.svn.wordpress.org/trunk@44494 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/user.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/wp-includes/user.php b/src/wp-includes/user.php index efa1fb6288..6415d95c33 100644 --- a/src/wp-includes/user.php +++ b/src/wp-includes/user.php @@ -3531,9 +3531,9 @@ function wp_generate_user_request_key( $request_id ) { wp_update_post( array( - 'ID' => $request_id, - 'post_status' => 'request-pending', - 'post_password' => $wp_hasher->HashPassword( $key ), + 'ID' => $request_id, + 'post_status' => 'request-pending', + 'post_password' => $wp_hasher->HashPassword( $key ), ) );