From 137dda204d920d0b80d79ba830c4adfde44d0f28 Mon Sep 17 00:00:00 2001 From: Ad Schellevis Date: Mon, 13 Mar 2017 09:27:02 +0100 Subject: [PATCH] (groups) align groupname length, like https://github.com/opnsense/core/commit/0829a34cef456c0065435405e965c45e8077d369 --- src/www/system_groupmanager.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/www/system_groupmanager.php b/src/www/system_groupmanager.php index 0af5ef9a2..569a87898 100644 --- a/src/www/system_groupmanager.php +++ b/src/www/system_groupmanager.php @@ -91,8 +91,8 @@ if ($_SERVER['REQUEST_METHOD'] === 'GET') { $input_errors[] = gettext("The group name contains invalid characters."); } - if (strlen($pconfig['name']) > 16) { - $input_errors[] = gettext("The group name is longer than 16 characters."); + if (strlen($pconfig['name']) > 32) { + $input_errors[] = gettext("The group name is longer than 32 characters."); } if (count($input_errors) == 0 && !isset($id)) { @@ -237,7 +237,7 @@ $( document ).ready(function() { - /> + />