diff options
author | Ross Williams <ross@ross-williams.net> | 2016-11-30 09:38:49 -0500 |
---|---|---|
committer | Renato Botelho <renato@netgate.com> | 2016-12-02 14:00:29 -0200 |
commit | 6a2c8e35df0fe43192070dc6f890ccc82222de34 (patch) | |
tree | 37fad85f01dd16eacd4072cbf8392b73c61cf586 /src | |
parent | 7b0df18459b22eb9de01983c240375e5b87b4ce3 (diff) | |
download | pfsense-6a2c8e35df0fe43192070dc6f890ccc82222de34.zip pfsense-6a2c8e35df0fe43192070dc6f890ccc82222de34.tar.gz |
Added title to ddnsforcehostname checkbox
(cherry picked from commit cfc10a3364fee9ab220b9ada5584bfbe62ba800c)
Diffstat (limited to 'src')
-rw-r--r-- | src/usr/local/www/services_dhcp.php | 2 | ||||
-rw-r--r-- | src/usr/local/www/services_dhcpv6.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/usr/local/www/services_dhcp.php b/src/usr/local/www/services_dhcp.php index e7cae51..52362e1 100644 --- a/src/usr/local/www/services_dhcp.php +++ b/src/usr/local/www/services_dhcp.php @@ -1045,7 +1045,7 @@ $section->addInput(new Form_Input( $section->addInput(new Form_Checkbox( 'ddnsforcehostname', - null, + 'DDNS Hostnames', 'Force dynamic DNS hostname to be the same as configured hostname for Static Mappings', $pconfig['ddnsforcehostname'] ))->setHelp('Default is to allow DHCP client to supply hostname to be registered.'); diff --git a/src/usr/local/www/services_dhcpv6.php b/src/usr/local/www/services_dhcpv6.php index b77480a..0dfaabb 100644 --- a/src/usr/local/www/services_dhcpv6.php +++ b/src/usr/local/www/services_dhcpv6.php @@ -787,7 +787,7 @@ $section->addInput(new Form_Input( $section->addInput(new Form_Checkbox( 'ddnsforcehostname', - null, + 'DDNS Hostnames', 'Force dynamic DNS hostname to be the same as configured hostname for Static Mappings', $pconfig['ddnsforcehostname'] ))->setHelp('Default is to allow DHCP client to supply hostname to be registered.'); |