aboutsummaryrefslogtreecommitdiff
path: root/phpBB
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2013-05-19 15:13:37 +0200
committerMarc Alexander <admin@m-a-styles.de>2013-05-19 15:13:37 +0200
commit7898dd945966232060bf4ff39a31b319f4962ae1 (patch)
treee28ecd300c0208a4ed6fa462fda3448aeb817a72 /phpBB
parent[ticket/11538] Move group ID into abstract test class and add more test cases (diff)
downloadphpbb-7898dd945966232060bf4ff39a31b319f4962ae1.tar.gz
phpbb-7898dd945966232060bf4ff39a31b319f4962ae1.tar.bz2
phpbb-7898dd945966232060bf4ff39a31b319f4962ae1.zip
[ticket/11538] Limit comment in acp_groups to 80 characters per line
PHPBB3-11538
Diffstat (limited to 'phpBB')
-rw-r--r--phpBB/includes/acp/acp_groups.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/phpBB/includes/acp/acp_groups.php b/phpBB/includes/acp/acp_groups.php
index bddad78bf2..089fe4baa1 100644
--- a/phpBB/includes/acp/acp_groups.php
+++ b/phpBB/includes/acp/acp_groups.php
@@ -414,10 +414,10 @@ class acp_groups
}
/*
- * Validate the length of "Maximum number of allowed recipients per private message" setting.
- * We use 16777215 as a maximum because it matches MySQL unsigned mediumint maximum value
- * which is the lowest amongst DBMSes supported by phpBB3.
- * Also validate the submitted colour value.
+ * Validate the length of "Maximum number of allowed recipients per
+ * private message" setting. We use 16777215 as a maximum because it matches
+ * MySQL unsigned mediumint maximum value which is the lowest amongst DBMSes
+ * supported by phpBB3. Also validate the submitted colour value.
*/
$validation_checks = array(
'max_recipients' => array('num', false, 0, 16777215),