diff --git a/system/src/Validator.php b/system/src/Validator.php index ad9e3e50..6c189b29 100644 --- a/system/src/Validator.php +++ b/system/src/Validator.php @@ -121,7 +121,7 @@ class Validator return false; } - if(setting('core.account_mail_block_plus_sign')) { + if(!defined('MYAAC_INSTALL') && setting('core.account_mail_block_plus_sign')) { $explode = explode('@', $email); if(isset($explode[0]) && (strpos($explode[0],'+') !== false)) { self::$lastError = 'Please do not use plus (+) sign in your e-mail.';