From e83f75324681812d9ea90206255547d082445f28 Mon Sep 17 00:00:00 2001 From: Gary Pendergast Date: Tue, 8 Jan 2019 09:03:50 +0000 Subject: [PATCH] Coding Standards: Fix an error introduced in [44465]. See #45748. Built from https://develop.svn.wordpress.org/trunk@44470 git-svn-id: http://core.svn.wordpress.org/trunk@44301 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/user.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/user.php b/wp-includes/user.php index d99885142d..0febf4aa37 100644 --- a/wp-includes/user.php +++ b/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.' ), diff --git a/wp-includes/version.php b/wp-includes/version.php index 40a7881432..77088c8225 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.1-alpha-44469'; +$wp_version = '5.1-alpha-44470'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.