Revision 8a85ab90
Added by Jim Pingle about 14 years ago
usr/local/www/services_dhcpv6_edit.php | ||
---|---|---|
108 | 108 |
do_input_validation($_POST, $reqdfields, $reqdfieldsn, &$input_errors); |
109 | 109 |
|
110 | 110 |
if ($_POST['hostname']) { |
111 |
preg_match("/^[0-9]/", $_POST['hostname'], $matches); |
|
112 |
if($matches) |
|
113 |
$input_errors[] = gettext("The hostname cannot start with a numeric character according to RFC952"); |
|
114 | 111 |
preg_match("/\-\$/", $_POST['hostname'], $matches); |
115 | 112 |
if($matches) |
116 | 113 |
$input_errors[] = gettext("The hostname cannot end with a hyphen according to RFC952"); |
Also available in: Unified diff
Apparently RFC 1123 overrides RFC 952 and hostnames can start with digits these days.