1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 14:00:31 +02:00

[ticket/security-132] Limit maximum number of captcha attempts at register

SECURITY-132
This commit is contained in:
Marc Alexander
2023-10-05 21:06:15 +02:00
parent 5f8c9962a0
commit 137422116e

View File

@@ -300,7 +300,7 @@ class ucp_register
if ($config['max_reg_attempts'] && $captcha->get_attempt_count() > $config['max_reg_attempts'])
{
$error[] = $user->lang['TOO_MANY_REGISTERS'];
trigger_error('TOO_MANY_REGISTERS');
}
}