update config.php config for unban limit
Adding config and error for unban list when a user tries to unban more users than they are allowed too.
This commit is contained in:
parent
b4ff535128
commit
83401b3a68
@ -686,6 +686,7 @@
|
|||||||
$config['error']['captcha'] = _('You seem to have mistyped the verification.');
|
$config['error']['captcha'] = _('You seem to have mistyped the verification.');
|
||||||
|
|
||||||
// Moderator errors
|
// Moderator errors
|
||||||
|
$config['error']['toomanyunban'] = _('You are only allowed to unban %s users at a time. You tried to unban %u users.');
|
||||||
$config['error']['invalid'] = _('Invalid username and/or password.');
|
$config['error']['invalid'] = _('Invalid username and/or password.');
|
||||||
$config['error']['notamod'] = _('You are not a mod…');
|
$config['error']['notamod'] = _('You are not a mod…');
|
||||||
$config['error']['invalidafter'] = _('Invalid username and/or password. Your user may have been deleted or changed.');
|
$config['error']['invalidafter'] = _('Invalid username and/or password. Your user may have been deleted or changed.');
|
||||||
@ -769,6 +770,9 @@
|
|||||||
* ====================
|
* ====================
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// Limit how many bans can be removed via the ban list. (Set too -1 to remove limit.)
|
||||||
|
$config['mod']['unban_limit'] = 5;
|
||||||
|
|
||||||
// Whether or not to lock moderator sessions to the IP address that was logged in with.
|
// Whether or not to lock moderator sessions to the IP address that was logged in with.
|
||||||
$config['mod']['lock_ip'] = true;
|
$config['mod']['lock_ip'] = true;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user