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
This commit is contained in:
Gary Pendergast 2019-01-09 04:32:59 +00:00
parent acba2e55df
commit 3d030132ae
1 changed files with 3 additions and 3 deletions

View File

@ -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 ),
)
);