From 3c75e1fb0e79e45bc4d1e3e4e5e55a0769e2deae Mon Sep 17 00:00:00 2001 From: alex-418 Date: Tue, 28 Aug 2018 13:43:38 -0700 Subject: [PATCH] update email error message on registration form --- inc/class-validate.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/class-validate.php b/inc/class-validate.php index 1f46082..b65e519 100644 --- a/inc/class-validate.php +++ b/inc/class-validate.php @@ -150,7 +150,7 @@ public function signupUserBC() { $valid = $this->isWhiteListedDomain( $domain ); if ( false == $valid ) { - $bp->signup->errors['signup_email'] = 'Please use an email address from an authorized domain.'; + $bp->signup->errors['signup_email'] = 'Your email must match the Internet domain name of your organization.'; } } }