From c62eab00a79d76ef94f01ee841cfa7708ad9811c Mon Sep 17 00:00:00 2001 From: Jonathan Desrosiers Date: Tue, 19 Mar 2019 02:47:41 +0000 Subject: [PATCH] Coding Standards: Fix PHPCS issue introduced in [44931]. See #44901. git-svn-id: https://develop.svn.wordpress.org/trunk@44932 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-login.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/wp-login.php b/src/wp-login.php index 464e4ed73f..1110e0210f 100644 --- a/src/wp-login.php +++ b/src/wp-login.php @@ -861,8 +861,8 @@ switch ( $action ) { } $request_id = (int) $_GET['request_id']; - $key = sanitize_text_field( wp_unslash( $_GET['confirm_key'] ) ); - $result = wp_validate_user_request_key( $request_id, $key ); + $key = sanitize_text_field( wp_unslash( $_GET['confirm_key'] ) ); + $result = wp_validate_user_request_key( $request_id, $key ); if ( is_wp_error( $result ) ) { wp_die( $result );