Privacy: Fix a code formatting error introduced in [44491].

See #44908.


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


git-svn-id: http://core.svn.wordpress.org/trunk@44325 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Gary Pendergast 2019-01-09 04:33:50 +00:00
parent 47e29ccba9
commit 0b44fae46b
2 changed files with 4 additions and 4 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 ),
)
);

View File

@ -13,7 +13,7 @@
*
* @global string $wp_version
*/
$wp_version = '5.1-alpha-44493';
$wp_version = '5.1-alpha-44494';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.