aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes
diff options
context:
space:
mode:
authorDhruv <dhruv.goel92@gmail.com>2013-01-26 00:22:56 +0530
committerDhruv <dhruv.goel92@gmail.com>2013-04-25 20:39:49 +0530
commit5de14b940e71941853d3bb279779631ae75b9b6f (patch)
treeb64dd7025e13ad1a80f8b84648ba525546448351 /phpBB/includes
parent2bf01098d2c3e45824448642dde9f1469ec6e588 (diff)
downloadforums-5de14b940e71941853d3bb279779631ae75b9b6f.tar
forums-5de14b940e71941853d3bb279779631ae75b9b6f.tar.gz
forums-5de14b940e71941853d3bb279779631ae75b9b6f.tar.bz2
forums-5de14b940e71941853d3bb279779631ae75b9b6f.tar.xz
forums-5de14b940e71941853d3bb279779631ae75b9b6f.zip
[ticket/10325] add allow forgot password option in acp
PHPBB3-10325
Diffstat (limited to 'phpBB/includes')
-rw-r--r--phpBB/includes/acp/acp_board.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/phpBB/includes/acp/acp_board.php b/phpBB/includes/acp/acp_board.php
index bacf0d6e57..1956ade31a 100644
--- a/phpBB/includes/acp/acp_board.php
+++ b/phpBB/includes/acp/acp_board.php
@@ -398,6 +398,7 @@ class acp_board
'vars' => array(
'legend1' => 'ACP_SECURITY_SETTINGS',
'allow_autologin' => array('lang' => 'ALLOW_AUTOLOGIN', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => true),
+ 'allow_forgot_password' => array('lang' => 'ALLOW_FORGOT_PASSWORD', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => true),
'max_autologin_time' => array('lang' => 'AUTOLOGIN_LENGTH', 'validate' => 'int:0', 'type' => 'text:5:5', 'explain' => true, 'append' => ' ' . $user->lang['DAYS']),
'ip_check' => array('lang' => 'IP_VALID', 'validate' => 'int', 'type' => 'custom', 'method' => 'select_ip_check', 'explain' => true),
'browser_check' => array('lang' => 'BROWSER_VALID', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => true),