aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes
diff options
context:
space:
mode:
authorAndreas Fischer <bantu@phpbb.com>2011-06-16 16:11:27 +0200
committerAndreas Fischer <bantu@phpbb.com>2011-06-16 16:11:27 +0200
commitbd6e27d9c5ad686fa8ca9a5e355e08b76fb0e8d1 (patch)
treee6f5a5d0d128ff612fd6679917890c8b07408bf1 /phpBB/includes
parentaa0c70058b4deb4284d17ce961ccc9bf4cbe47e7 (diff)
parent1d349ee5a8f41748ef3698b7948cb82911703bdc (diff)
downloadforums-bd6e27d9c5ad686fa8ca9a5e355e08b76fb0e8d1.tar
forums-bd6e27d9c5ad686fa8ca9a5e355e08b76fb0e8d1.tar.gz
forums-bd6e27d9c5ad686fa8ca9a5e355e08b76fb0e8d1.tar.bz2
forums-bd6e27d9c5ad686fa8ca9a5e355e08b76fb0e8d1.tar.xz
forums-bd6e27d9c5ad686fa8ca9a5e355e08b76fb0e8d1.zip
Merge branch 'prep-release-3.0.9' into develop-olympus
* prep-release-3.0.9: [ticket/10221] Append unit (seconds) after input field, remove from explanation
Diffstat (limited to 'phpBB/includes')
-rw-r--r--phpBB/includes/acp/acp_board.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/acp/acp_board.php b/phpBB/includes/acp/acp_board.php
index 9f00145f3b..d8ab42ed2d 100644
--- a/phpBB/includes/acp/acp_board.php
+++ b/phpBB/includes/acp/acp_board.php
@@ -387,7 +387,7 @@ class acp_board
'chg_passforce' => array('lang' => 'FORCE_PASS_CHANGE', 'validate' => 'int:0', 'type' => 'text:3:3', 'explain' => true, 'append' => ' ' . $user->lang['DAYS']),
'max_login_attempts' => array('lang' => 'MAX_LOGIN_ATTEMPTS', 'validate' => 'int:0', 'type' => 'text:3:3', 'explain' => true),
'ip_login_limit_max' => array('lang' => 'IP_LOGIN_LIMIT_MAX', 'validate' => 'int:0', 'type' => 'text:3:3', 'explain' => true),
- 'ip_login_limit_time' => array('lang' => 'IP_LOGIN_LIMIT_TIME', 'validate' => 'int:0', 'type' => 'text:5:5', 'explain' => true),
+ 'ip_login_limit_time' => array('lang' => 'IP_LOGIN_LIMIT_TIME', 'validate' => 'int:0', 'type' => 'text:5:5', 'explain' => true, 'append' => ' ' . $user->lang['SECONDS']),
'ip_login_limit_use_forwarded' => array('lang' => 'IP_LOGIN_LIMIT_USE_FORWARDED', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => true),
'tpl_allow_php' => array('lang' => 'TPL_ALLOW_PHP', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => true),
'form_token_lifetime' => array('lang' => 'FORM_TIME_MAX', 'validate' => 'int:-1', 'type' => 'text:5:5', 'explain' => true, 'append' => ' ' . $user->lang['SECONDS']),