diff --git a/Classes/Domain/Validator/SpamShield/HoneyPodMethod.php b/Classes/Domain/Validator/SpamShield/HoneyPodMethod.php index 88f9132c1..7e16c3782 100644 --- a/Classes/Domain/Validator/SpamShield/HoneyPodMethod.php +++ b/Classes/Domain/Validator/SpamShield/HoneyPodMethod.php @@ -15,6 +15,6 @@ class HoneyPodMethod extends AbstractMethod */ public function spamCheck(): bool { - return !empty($this->arguments['field']['__hp']); + return !isset($this->arguments['field']['__hp']) || !empty($this->arguments['field']['__hp']); } }