0byt3m1n1
Path:
/
data
/
applications
/
aps
/
tikiwiki
/
14.1-0
/
standard
/
htdocs
/
lib
/
prefs
/
[
Home
]
File: unsuccessful.php
<?php // (c) Copyright 2002-2015 by authors of the Tiki Wiki CMS Groupware Project // // All Rights Reserved. See copyright.txt for details and a complete list of authors. // Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details. // $Id: unsuccessful.php 53803 2015-02-06 00:42:50Z jyhem $ function prefs_unsuccessful_list() { return array( 'unsuccessful_logins' => array( 'name' => tra('Re-validate user by email after'), 'type' => 'text', 'size' => 5, 'filter' => 'int', 'shorthint' => tra('unsuccessful login attempts'), 'hint' => tra('Use "-1" for never'), 'description' => tra('After a certain number of consecutive unsuccessful login attempts, the user will receive a mail with instruction to validate his account. However the user can still log-in with his old password.'), 'default' => 20, 'keywords' => tra('brute force, brute-force, login failure, login-failure, failed logins'), ), 'unsuccessful_logins_invalid' => array( 'name' => tra('Suspend account after'), 'type' => 'text', 'size' => 5, 'filter' => 'int', 'description' => tra('After a certain number of consecutive unsuccessful login attempts, the account is suspended. An admin must revalidate the account before the user can use it again.'), 'shorthint' => tra('unsuccessful login attempts'), 'hint' => tra('Use "-1" for never'), 'default' => 50, 'keywords' => tra('brute force, brute-force, login failure, login-failure, failed logins'), ), ); }