From 801e193ae020c0faead3eb64b72b88e178e88225 Mon Sep 17 00:00:00 2001 From: Gary Pendergast Date: Tue, 8 Jan 2019 09:02:50 +0000 Subject: [PATCH] Coding Standards: Fix an error introduced in [44465]. See #45748. git-svn-id: https://develop.svn.wordpress.org/trunk@44470 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/user.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-includes/user.php b/src/wp-includes/user.php index d99885142d6e..0febf4aa3776 100644 --- a/src/wp-includes/user.php +++ b/src/wp-includes/user.php @@ -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', __( 'ERROR: The email address is already used.' ),