diff options
author | Senky <jakubsenko@gmail.com> | 2013-05-21 11:57:33 +0200 |
---|---|---|
committer | Senky <jakubsenko@gmail.com> | 2013-05-21 11:57:33 +0200 |
commit | 721bc03b2b992f4df14afcbe64bb2f0cb7d73cf5 (patch) | |
tree | 8f0133cd8a9d375a4563039de7bc6ff1859c50de | |
parent | 930f4c70ed7acca6a85e95e00c6562c25e0d67a2 (diff) | |
download | forums-721bc03b2b992f4df14afcbe64bb2f0cb7d73cf5.tar forums-721bc03b2b992f4df14afcbe64bb2f0cb7d73cf5.tar.gz forums-721bc03b2b992f4df14afcbe64bb2f0cb7d73cf5.tar.bz2 forums-721bc03b2b992f4df14afcbe64bb2f0cb7d73cf5.tar.xz forums-721bc03b2b992f4df14afcbe64bb2f0cb7d73cf5.zip |
[ticket/11010] properly tabifying 'max_autologin_time'
PHPBB3-11010
-rw-r--r-- | phpBB/includes/acp/acp_board.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/acp/acp_board.php b/phpBB/includes/acp/acp_board.php index 34040367fb..6881e03fdb 100644 --- a/phpBB/includes/acp/acp_board.php +++ b/phpBB/includes/acp/acp_board.php @@ -399,7 +399,7 @@ class acp_board 'legend1' => 'ACP_SECURITY_SETTINGS', 'allow_autologin' => array('lang' => 'ALLOW_AUTOLOGIN', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => true), 'allow_password_reset' => array('lang' => 'ALLOW_PASSWORD_RESET', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => true), - 'max_autologin_time' => array('lang' => 'AUTOLOGIN_LENGTH', 'validate' => 'int:0:99999', 'type' => 'number:0:99999', 'explain' => true, 'append' => ' ' . $user->lang['DAYS']), + 'max_autologin_time' => array('lang' => 'AUTOLOGIN_LENGTH', 'validate' => 'int:0:99999', 'type' => 'number:0:99999', '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), 'forwarded_for_check' => array('lang' => 'FORWARDED_FOR_VALID', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => true), |