Ticket #46748: 46748.diff
File 46748.diff, 1.1 KB (added by , 4 years ago) |
---|
-
src/wp-includes/user.php
126 126 return $user; 127 127 } 128 128 129 if ( is_wp_error( $user ) ) { 130 return $user; 131 } 132 129 133 if ( empty( $username ) || empty( $password ) ) { 130 if ( is_wp_error( $user ) ) {131 return $user;132 }133 134 134 $error = new WP_Error(); 135 135 136 136 if ( empty( $username ) ) { … … 200 200 return $user; 201 201 } 202 202 203 if ( is_wp_error( $user ) ) { 204 return $user; 205 } 206 203 207 if ( empty( $email ) || empty( $password ) ) { 204 if ( is_wp_error( $user ) ) {205 return $user;206 }207 208 208 $error = new WP_Error(); 209 209 210 210 if ( empty( $email ) ) { … … 273 273 return $user; 274 274 } 275 275 276 if ( is_wp_error( $user ) ) { 277 return $user; 278 } 279 276 280 if ( empty( $username ) && empty( $password ) ) { 277 281 $user_id = wp_validate_auth_cookie(); 278 282 if ( $user_id ) { … … 314 318 return $input_user; 315 319 } 316 320 321 if ( is_wp_error( $user ) ) { 322 return $input_user; 323 } 324 317 325 if ( ! WP_Application_Passwords::is_in_use() ) { 318 326 return $input_user; 319 327 }