Closed wtfred closed 2 years ago
Hello,
This line cause problem with 8.1:
PHP Warning: Undefined array key "robotMode"
https://github.com/evoWeb/recaptcha/blob/c03c95d4acef009e654c366b3f92f7fe2f18d124/Classes/Services/CaptchaService.php#L98
I had to make it return (bool)($this->configuration['robotMode'] ?? false);
return (bool)($this->configuration['robotMode'] ?? false);
Hello,
This line cause problem with 8.1:
PHP Warning: Undefined array key "robotMode"
https://github.com/evoWeb/recaptcha/blob/c03c95d4acef009e654c366b3f92f7fe2f18d124/Classes/Services/CaptchaService.php#L98
I had to make it
return (bool)($this->configuration['robotMode'] ?? false);