diff options
author | zotlabs <mike@macgirvin.com> | 2017-05-11 19:01:04 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2017-05-11 19:01:04 -0700 |
commit | 1de1b58a087afbadb55b7f18b93fb0b502a2de3a (patch) | |
tree | 4ccf01cfea90497acca5f58697653ec734b1cc02 /include/account.php | |
parent | 4f577cbdebea44dfedece4eeddb99138d5f02f65 (diff) | |
download | volse-hubzilla-1de1b58a087afbadb55b7f18b93fb0b502a2de3a.tar.gz volse-hubzilla-1de1b58a087afbadb55b7f18b93fb0b502a2de3a.tar.bz2 volse-hubzilla-1de1b58a087afbadb55b7f18b93fb0b502a2de3a.zip |
consolidate email validation checks
Diffstat (limited to 'include/account.php')
-rw-r--r-- | include/account.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/account.php b/include/account.php index 5e57d53a8..c188ce0d7 100644 --- a/include/account.php +++ b/include/account.php @@ -31,7 +31,7 @@ function check_account_email($email) { if(! strlen($email)) return $result; - if((! valid_email($email)) || (! validate_email($email))) + if(! validate_email($email)) $result['message'] .= t('Not a valid email address') . EOL; elseif(! allowed_email($email)) $result['message'] = t('Your email domain is not among those allowed on this site'); |