From f2c3db14d57385f0468bd326a56acc0d84bb8a14 Mon Sep 17 00:00:00 2001 From: Chris Buechler Date: Sun, 21 Feb 2010 01:00:16 -0500 Subject: [PATCH] fix text --- usr/local/www/interfaces_groups_edit.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr/local/www/interfaces_groups_edit.php b/usr/local/www/interfaces_groups_edit.php index f40de0ac0d..51feffda18 100755 --- a/usr/local/www/interfaces_groups_edit.php +++ b/usr/local/www/interfaces_groups_edit.php @@ -69,7 +69,7 @@ if ($_POST) { $input_errors[] = "Group name already exists!"; } if (preg_match("/([^a-zA-Z])+/", $_POST['ifname'], $match)) - $input_errors[] = "Only characters in a-z A-Z are allowed as interface name."; + $input_errors[] = "Only letters A-Z are allowed as the group name."; $ifgroupentry = array(); $ifgroupentry['ifname'] = $_POST['ifname'];