[ticket/17366] Remember confirm code if recaptcha v3 is solved

PHPBB-17366
This commit is contained in:
Marc Alexander 2024-07-07 11:31:18 +02:00
parent c790e81fb6
commit 8639be4bd4
No known key found for this signature in database
GPG key ID: 50E0D2423696F995

View file

@ -359,6 +359,7 @@ class recaptcha_v3 extends captcha_abstract
if ($result->isSuccess()) if ($result->isSuccess())
{ {
$this->solved = true; $this->solved = true;
$this->confirm_code = $this->code;
return false; return false;
} }