diff --git a/wp-admin/includes/user.php b/wp-admin/includes/user.php index 3c5c4ae72d..2d3d276dcc 100644 --- a/wp-admin/includes/user.php +++ b/wp-admin/includes/user.php @@ -609,13 +609,13 @@ function _wp_privacy_resend_request( $request_id ) { } /** - * Marks a request as completed by the admin and logs the datetime. + * Marks a request as completed by the admin and logs the current timestamp. * * @since 4.9.6 * @access private * - * @param int $request_id Request ID. - * @return int|WP_Error Request ID on succes or WP_Error. + * @param int $request_id Request ID. + * @return int|WP_Error $request Request ID on success or WP_Error. */ function _wp_privacy_completed_request( $request_id ) { $request_id = absint( $request_id ); @@ -625,11 +625,11 @@ function _wp_privacy_completed_request( $request_id ) { return new WP_Error( 'privacy_request_error', __( 'Invalid request.' ) ); } - update_post_meta( $request_id, '_wp_user_request_confirmed_timestamp', time() ); + update_post_meta( $request_id, '_wp_user_request_completed_timestamp', time() ); $request = wp_update_post( array( 'ID' => $request_id, - 'post_status' => 'request-confirmed', + 'post_status' => 'request-completed', ) ); return $request; diff --git a/wp-includes/version.php b/wp-includes/version.php index 1275bbd3fe..7ca08afba9 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '5.0-alpha-43181'; +$wp_version = '5.0-alpha-43183'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.