summaryrefslogtreecommitdiffstats
path: root/src/usr/local/www/services_dhcp.php
diff options
context:
space:
mode:
authorPhil Davis <phil.davis@inf.org>2016-12-03 19:21:07 +0545
committerRenato Botelho <renato@netgate.com>2016-12-27 10:47:49 -0200
commit4a1a2050862defed55ce2e06537af694ca6a2561 (patch)
treecf3f777c6130cd9a8e70b090f57bfab872e8da74 /src/usr/local/www/services_dhcp.php
parent914ddfa2830879618a7f61168c46b1efb8c39336 (diff)
downloadpfsense-4a1a2050862defed55ce2e06537af694ca6a2561.zip
pfsense-4a1a2050862defed55ce2e06537af694ca6a2561.tar.gz
Form_IpAddress add types remove patterns
1) Add alias and host types to Form_IpAddress with the appropriate hover text. 2) Remove the patterns - the UI of those is not so effective anyway, so leave the validation of input to the back end. 3) Update uses of Form_IpAddress to use the appropriate Alias or Host type as needed. 4) Remove explicit setPattern() from those uses of Form_IpAddress. (cherry picked from commit 45541aae63596ea28aa18c84b65946bce6adbffd)
Diffstat (limited to 'src/usr/local/www/services_dhcp.php')
-rw-r--r--src/usr/local/www/services_dhcp.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/usr/local/www/services_dhcp.php b/src/usr/local/www/services_dhcp.php
index 59d069e..67ddb16 100644
--- a/src/usr/local/www/services_dhcp.php
+++ b/src/usr/local/www/services_dhcp.php
@@ -1155,15 +1155,15 @@ $section->addInput(new Form_IpAddress(
'ntp1',
'NTP Server 1',
$pconfig['ntp1'],
- 'V4'
-))->setPattern('[.a-zA-Z0-9-]+');
+ 'HOSTV4'
+));
$section->addInput(new Form_IpAddress(
'ntp2',
'NTP Server 2',
$pconfig['ntp2'],
- 'V4'
-))->setPattern('[.a-zA-Z0-9-]+');
+ 'HOSTV4'
+));
// Advanced TFTP
$btnadv = new Form_Button(
OpenPOWER on IntegriCloud