Allow Hyphens in DHCP NTP Server form validation

Also removes the ability to have underscores `_` in ntp server
FQDNs.

Closes #6806
This commit is contained in:
Eddie Hurtig 2016-09-22 00:54:32 -04:00
parent 4b0815f38a
commit c68dbfc758

View File

@ -1070,13 +1070,13 @@ $section->addInput(new Form_IpAddress(
'ntp1',
'NTP Server 1',
$pconfig['ntp1']
))->setPattern('[.a-zA-Z0-9_]+');
))->setPattern('[.a-zA-Z0-9-]+');
$section->addInput(new Form_IpAddress(
'ntp2',
'NTP Server 2',
$pconfig['ntp2']
))->setPattern('[.a-zA-Z0-9_]+');
))->setPattern('[.a-zA-Z0-9-]+');
// Advanced TFTP
$btnadv = new Form_Button(