From 4b7b121550a60d0b7395b75f5e1190e27145bcf1 Mon Sep 17 00:00:00 2001 From: slawkens Date: Wed, 28 May 2025 14:08:50 +0200 Subject: [PATCH] Try fix workflow --- system/src/Validator.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.';