Skip to content

Commit

Permalink
ISC DHCP / unbound / dnsmasq - be more explicit of what the feature o…
Browse files Browse the repository at this point in the history
…ffers. #7209

(cherry picked from commit 43c3ca4)
  • Loading branch information
AdSchellevis authored and fichtner committed Feb 9, 2024
1 parent ca59b48 commit dde82a7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
</field>
<field>
<id>unbound.general.regdhcp</id>
<label>Register DHCP Leases</label>
<label>Register ISC DHCP4 Leases</label>
<type>checkbox</type>
<help>If this option is set, then machines that specify their hostname when requesting a DHCP lease will be registered in Unbound, so that their name can be resolved.</help>
</field>
Expand All @@ -58,7 +58,7 @@
</field>
<field>
<id>unbound.general.regdhcpstatic</id>
<label>Register DHCP Static Mappings</label>
<label>Register ISC DHCP Static Mappings</label>
<type>checkbox</type>
<help>
<![CDATA[If this option is set, then DHCP static mappings will be registered in Unbound, so that their name can be resolved.
Expand Down
4 changes: 2 additions & 2 deletions src/www/services_dnsmasq.php
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@
</td>
</tr>
<tr>
<td><a id="help_for_regdhcp" href="#" class="showhelp"><i class="fa fa-info-circle"></i></a> <?=gettext("DHCP Registration");?></td>
<td><a id="help_for_regdhcp" href="#" class="showhelp"><i class="fa fa-info-circle"></i></a> <?=gettext("Register ISC DHCP4 Leases");?></td>
<td>
<input name="regdhcp" type="checkbox" id="regdhcp" value="yes" <?=!empty($pconfig['regdhcp']) ? "checked=\"checked\"" : "";?> />
<?= gettext('Register DHCP leases') ?>
Expand All @@ -328,7 +328,7 @@
</td>
</tr>
<tr>
<td><a id="help_for_regdhcpstatic" href="#" class="showhelp"><i class="fa fa-info-circle"></i></a> <?=gettext("Static DHCP");?></td>
<td><a id="help_for_regdhcpstatic" href="#" class="showhelp"><i class="fa fa-info-circle"></i></a> <?=gettext("Register ISC DHCP Static Mappings");?></td>
<td>
<input name="regdhcpstatic" type="checkbox" id="regdhcpstatic" value="yes" <?=!empty($pconfig['regdhcpstatic']) ? "checked=\"checked\"" : "";?> />
<?= gettext('Register DHCP static mappings') ?>
Expand Down

0 comments on commit dde82a7

Please sign in to comment.