mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-29 06:38:52 +00:00
[ticket/11538] Limit comment in acp_groups to 80 characters per line
PHPBB3-11538
This commit is contained in:
parent
8aea2b382d
commit
7898dd9459
1 changed files with 4 additions and 4 deletions
|
@ -414,10 +414,10 @@ class acp_groups
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Validate the length of "Maximum number of allowed recipients per private message" setting.
|
* Validate the length of "Maximum number of allowed recipients per
|
||||||
* We use 16777215 as a maximum because it matches MySQL unsigned mediumint maximum value
|
* private message" setting. We use 16777215 as a maximum because it matches
|
||||||
* which is the lowest amongst DBMSes supported by phpBB3.
|
* MySQL unsigned mediumint maximum value which is the lowest amongst DBMSes
|
||||||
* Also validate the submitted colour value.
|
* supported by phpBB3. Also validate the submitted colour value.
|
||||||
*/
|
*/
|
||||||
$validation_checks = array(
|
$validation_checks = array(
|
||||||
'max_recipients' => array('num', false, 0, 16777215),
|
'max_recipients' => array('num', false, 0, 16777215),
|
||||||
|
|
Loading…
Add table
Reference in a new issue