Fix: Multiple accounts per mail address are allowed when not explicit forbidden

This commit is contained in:
Michael 2018-03-04 22:23:52 +00:00
parent 3f739d53c8
commit cd79ce3a57
1 changed files with 1 additions and 1 deletions

View File

@ -382,7 +382,7 @@ class User
throw new Exception(L10n::t('Not a valid email address.'));
}
if (dba::exists('user', ['email' => $email])) {
if (Config::get('system', 'block_extended_register', false) && dba::exists('user', ['email' => $email])) {
throw new Exception(L10n::t('Cannot use that email.'));
}