summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStephen Beaver <sbeaver@netgate.com>2016-01-20 10:14:59 -0500
committerStephen Beaver <sbeaver@netgate.com>2016-01-20 10:14:59 -0500
commitff3da1e7358443f5e00ebf0d30fb9d35aebc88f1 (patch)
tree5910aae47bfc62302189d8e6975fb470c87455d7
parent5d7b915dc78d65b0fd5b93ea462b7e851a6a973d (diff)
downloadpfsense-ff3da1e7358443f5e00ebf0d30fb9d35aebc88f1.zip
pfsense-ff3da1e7358443f5e00ebf0d30fb9d35aebc88f1.tar.gz
Fixed #5781
-rw-r--r--src/usr/local/www/services_dhcp.php18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/usr/local/www/services_dhcp.php b/src/usr/local/www/services_dhcp.php
index b643a52..8cedc57 100644
--- a/src/usr/local/www/services_dhcp.php
+++ b/src/usr/local/www/services_dhcp.php
@@ -1048,21 +1048,21 @@ $btnadv = new Form_Button(
$btnadv->removeClass('btn-primary')->addClass('btn-info btn-sm');
$section->addInput(new Form_StaticText(
- 'NTP servers',
+ 'NTP',
$btnadv
));
$section->addInput(new Form_IpAddress(
'ntp1',
- null,
+ 'NTP Server 1',
$pconfig['ntp1']
-))->setAttribute('placeholder', 'NTP Server 1');
+));
$section->addInput(new Form_IpAddress(
'ntp2',
- null,
+ 'NTP Server 2',
$pconfig['ntp2']
-))->setAttribute('placeholder', 'NTP Server 2');
+));
// Advanced TFTP
$btnadv = new Form_Button(
@@ -1073,13 +1073,13 @@ $btnadv = new Form_Button(
$btnadv->removeClass('btn-primary')->addClass('btn-info btn-sm');
$section->addInput(new Form_StaticText(
- 'TFTP server',
+ 'TFTP',
$btnadv
));
$section->addInput(new Form_IpAddress(
'tftp',
- 'Host or IP',
+ 'TFTP Server',
$pconfig['tftp']
))->setHelp('Leave blank to disable. Enter a full hostname or IP for the TFTP server')->setPattern('[.a-zA-Z0-9_]+');
@@ -1092,13 +1092,13 @@ $btnadv = new Form_Button(
$btnadv->removeClass('btn-primary')->addClass('btn-info btn-sm');
$section->addInput(new Form_StaticText(
- 'LDAP URI',
+ 'LDAP',
$btnadv
));
$section->addInput(new Form_Input(
'ldap',
- null,
+ 'LDAP Server URI',
'text',
$pconfig['ldap']
))->setHelp('Leave blank to disable. Enter a full URI for the LDAP server in the form ldap://ldap.example.com/dc=example,dc=com ');
OpenPOWER on IntegriCloud