diff options
-rwxr-xr-x | usr/local/www/services_dhcp_edit.php | 5 | ||||
-rw-r--r-- | usr/local/www/services_dhcpv6_edit.php | 5 |
2 files changed, 8 insertions, 2 deletions
diff --git a/usr/local/www/services_dhcp_edit.php b/usr/local/www/services_dhcp_edit.php index 7123008..23c942f 100755 --- a/usr/local/www/services_dhcp_edit.php +++ b/usr/local/www/services_dhcp_edit.php @@ -224,7 +224,10 @@ include("head.inc"); <td width="78%" class="vtable"> <input name="ipaddr" type="text" class="formfld unknown" id="ipaddr" size="20" value="<?=htmlspecialchars($pconfig['ipaddr']);?>"> <br> - <?=gettext("If no IP address is given, one will be dynamically allocated from the pool.");?></td> + <?=gettext("If an IPv4 address is entered, the address must be outside of the pool.");?> + <br/> + <?=gettext("If no IPv4 address is given, one will be dynamically allocated from the pool.");?> + </td> </tr> <tr> <td width="22%" valign="top" class="vncell"><?=gettext("Hostname");?></td> diff --git a/usr/local/www/services_dhcpv6_edit.php b/usr/local/www/services_dhcpv6_edit.php index 6e2b118..2beab36 100644 --- a/usr/local/www/services_dhcpv6_edit.php +++ b/usr/local/www/services_dhcpv6_edit.php @@ -201,7 +201,10 @@ include("head.inc"); <td width="78%" class="vtable"> <input name="ipaddrv6" type="text" class="formfld unknown" id="ipaddrv6" size="28" value="<?=htmlspecialchars($pconfig['ipaddrv6']);?>"> <br> - <?=gettext("If no IPv6 address is given, one will be dynamically allocated from the pool.");?></td> + <?=gettext("If an IPv6 address is entered, the address must be outside of the pool.");?> + <br/> + <?=gettext("If no IPv6 address is given, one will be dynamically allocated from the pool.");?> + </td> </tr> <tr> <td width="22%" valign="top" class="vncell"><?=gettext("Hostname");?></td> |