From 9532ba3c3d67a8cf250e8e7e6bd4f31da82c11e3 Mon Sep 17 00:00:00 2001 From: Henry Sudhof Date: Sun, 17 Jan 2010 16:37:58 +0000 Subject: [PATCH] Mirror login captcha option on captcha settings git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10410 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/adm/style/acp_captcha.html | 4 ++++ phpBB/includes/acp/acp_captcha.php | 1 + 2 files changed, 5 insertions(+) diff --git a/phpBB/adm/style/acp_captcha.html b/phpBB/adm/style/acp_captcha.html index d31527b64d..8eee370284 100644 --- a/phpBB/adm/style/acp_captcha.html +++ b/phpBB/adm/style/acp_captcha.html @@ -21,6 +21,10 @@

{L_REG_LIMIT_EXPLAIN}
+
+

{L_MAX_LOGIN_ATTEMPTS_EXPLAIN}
+
+

{L_VISUAL_CONFIRM_POST_EXPLAIN}
diff --git a/phpBB/includes/acp/acp_captcha.php b/phpBB/includes/acp/acp_captcha.php index e1fa764191..ade0a23eda 100644 --- a/phpBB/includes/acp/acp_captcha.php +++ b/phpBB/includes/acp/acp_captcha.php @@ -56,6 +56,7 @@ class acp_captcha 'enable_post_confirm' => array('tpl' => 'POST_ENABLE', 'default' => false), 'confirm_refresh' => array('tpl' => 'CONFIRM_REFRESH', 'default' => false), 'max_reg_attempts' => array('tpl' => 'REG_LIMIT', 'default' => 0), + 'max_login_attempts' => array('tpl' => 'MAX_LOGIN_ATTEMPTS', 'default' => 0), ); $this->tpl_name = 'acp_captcha';