From c5c6bb16010c7a70accce56c7dd02711bf8faa67 Mon Sep 17 00:00:00 2001 From: Ad Schellevis Date: Thu, 20 Jun 2019 17:14:24 +0200 Subject: [PATCH] services_dhcpv6.php, fix typo in validation message , ref https://github.com/opnsense/core/issues/3546 --- src/www/services_dhcpv6.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/www/services_dhcpv6.php b/src/www/services_dhcpv6.php index 1054e2cbe..610b277cb 100644 --- a/src/www/services_dhcpv6.php +++ b/src/www/services_dhcpv6.php @@ -154,7 +154,7 @@ if ($_SERVER['REQUEST_METHOD'] === 'GET') { $input_errors[] = gettext("A valid domain name must be specified for the dynamic DNS registration."); } if (!empty($pconfig['ddnsdomain']) && !is_ipaddrv4($pconfig['ddnsdomainprimary'])) { - $input_errors[] = gettext("A valid primary domain name server IPv4 address must be specified for the dynamic domain name."); + $input_errors[] = gettext("A valid primary domain name server IPv6 address must be specified for the dynamic domain name."); } if (!empty($pconfig['ddnsdomainkey']) && base64_encode(base64_decode($pconfig['ddnsdomainkey'], true)) !== $pconfig['ddnsdomainkey']) { $input_errors[] = gettext('You must specify a Base64-encoded domain key.');