Skip to content

Commit

Permalink
Coding Standards: Fix an error introduced in [44465].
Browse files Browse the repository at this point in the history
See #45748.



git-svn-id: https://develop.svn.wordpress.org/trunk@44470 602fd350-edb4-49c9-b593-d223f7449a82
  • Loading branch information
pento committed Jan 8, 2019
1 parent 855606e commit 801e193
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/wp-includes/user.php
Expand Up @@ -2718,7 +2718,7 @@ function send_confirmation_on_profile_email() {
return;
}

if ( email_exists( $_POST['email'] ) ) {
if ( email_exists( $_POST['email'] ) ) {
$errors->add(
'user_email',
__( '<strong>ERROR</strong>: The email address is already used.' ),
Expand Down

0 comments on commit 801e193

Please sign in to comment.