From 8639be4bd49bafe30fd35bfd1582289988877ce9 Mon Sep 17 00:00:00 2001 From: Marc Alexander Date: Sun, 7 Jul 2024 11:31:18 +0200 Subject: [PATCH] [ticket/17366] Remember confirm code if recaptcha v3 is solved PHPBB-17366 --- phpBB/phpbb/captcha/plugins/recaptcha_v3.php | 1 + 1 file changed, 1 insertion(+) diff --git a/phpBB/phpbb/captcha/plugins/recaptcha_v3.php b/phpBB/phpbb/captcha/plugins/recaptcha_v3.php index 6afa18691f..814b962e31 100644 --- a/phpBB/phpbb/captcha/plugins/recaptcha_v3.php +++ b/phpBB/phpbb/captcha/plugins/recaptcha_v3.php @@ -359,6 +359,7 @@ class recaptcha_v3 extends captcha_abstract if ($result->isSuccess()) { $this->solved = true; + $this->confirm_code = $this->code; return false; }