Fix email address whitespace issue

This commit is contained in:
Champ Camba
2017-02-09 15:58:55 +08:00
parent 8c054f9412
commit f01a2ac03e
+1 -1
View File
@@ -102,7 +102,7 @@
$creds['user_login'] = $user_login;
$creds['user_password'] = $user_password;
$creds['user_email'] = $user_email;
$creds['user_email'] = trim( $user_email );
$args['submitted'] = array_merge( $args['submitted'], $creds);
$args = array_merge($args, $creds);