diff options
author | friendica <info@friendica.com> | 2012-07-01 18:56:00 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-07-01 18:56:00 -0700 |
commit | dd71f9446b05274550ebcb3ce4773762832084e3 (patch) | |
tree | 0901858977a643278a1cabb0aebc36bd5e6a1bf3 /include/user.php | |
parent | 696d78d6581a77cff44cbf558930c519d9ec0413 (diff) | |
download | volse-hubzilla-dd71f9446b05274550ebcb3ce4773762832084e3.tar.gz volse-hubzilla-dd71f9446b05274550ebcb3ce4773762832084e3.tar.bz2 volse-hubzilla-dd71f9446b05274550ebcb3ce4773762832084e3.zip |
config to disable email validation
Diffstat (limited to 'include/user.php')
-rw-r--r-- | include/user.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/user.php b/include/user.php index 383a3b3e1..039b30bbd 100644 --- a/include/user.php +++ b/include/user.php @@ -99,11 +99,11 @@ function create_user($arr) { if(! allowed_email($email)) - $result['message'] .= t('Your email domain is not among those allowed on this site.') . EOL; + $result['message'] .= t('Your email domain is not among those allowed on this site.') . EOL; if((! valid_email($email)) || (! validate_email($email))) $result['message'] .= t('Not a valid email address.') . EOL; - + // Disallow somebody creating an account using openid that uses the admin email address, // since openid bypasses email verification. We'll allow it if there is not yet an admin account. |