Merge pull request #20504 from cmarangon/master

Conform returned error messages
This commit is contained in:
Mike Jolley 2018-06-14 16:23:51 +01:00 committed by GitHub
commit c5429244b2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -106,7 +106,7 @@ if ( ! function_exists( 'wc_create_new_customer' ) ) {
$customer_id = wp_insert_user( $new_customer_data ); $customer_id = wp_insert_user( $new_customer_data );
if ( is_wp_error( $customer_id ) ) { if ( is_wp_error( $customer_id ) ) {
return new WP_Error( 'registration-error', '<strong>' . __( 'Error:', 'woocommerce' ) . '</strong> ' . __( 'Couldn&#8217;t register you&hellip; please contact us if you continue to have problems.', 'woocommerce' ) ); return new WP_Error( 'registration-error', __( 'Couldn&#8217;t register you&hellip; please contact us if you continue to have problems.', 'woocommerce' ) );
} }
do_action( 'woocommerce_created_customer', $customer_id, $new_customer_data, $password_generated ); do_action( 'woocommerce_created_customer', $customer_id, $new_customer_data, $password_generated );