diff --git a/dns/dyndns/Makefile b/dns/dyndns/Makefile index 7911cd887..2553b19f5 100644 --- a/dns/dyndns/Makefile +++ b/dns/dyndns/Makefile @@ -1,5 +1,5 @@ PLUGIN_NAME= dyndns -PLUGIN_VERSION= 1.22 +PLUGIN_VERSION= 1.23 PLUGIN_COMMENT= Dynamic DNS Support PLUGIN_MAINTAINER= franco@opnsense.org diff --git a/dns/dyndns/src/etc/inc/plugins.inc.d/dyndns/phpDynDNS.inc b/dns/dyndns/src/etc/inc/plugins.inc.d/dyndns/phpDynDNS.inc index 7a423bd4e..61d2f06b4 100644 --- a/dns/dyndns/src/etc/inc/plugins.inc.d/dyndns/phpDynDNS.inc +++ b/dns/dyndns/src/etc/inc/plugins.inc.d/dyndns/phpDynDNS.inc @@ -676,8 +676,8 @@ class updatedns /* * https://github.com/vizion8-dan * Tested on OPNsense 20.1.8_1-amd64 - IPv4 (A) - * dnsHost ("Hostname" field in OPNsense) should be the 2nd-level domain ("example.org") - * dnsUser ("Username" field in OPNsense) should be the subdomain / A-record ("myrecord" in 2nd-level domain) + * dnsHost ("Hostname" field in OPNsense) should be the 2nd-level domain ("example.org") + * dnsUser ("Username" field in OPNsense) should be the subdomain / A-record ("myrecord" in 2nd-level domain) * dnsPass should be the Gandi-API key */ $server = "https://dns.api.gandi.net/api/v5/domains/". $this->_dnsHost . "/records/" . $this->_dnsUser . "/A"; @@ -1453,7 +1453,7 @@ class updatedns case 'gandi-livedns': $http_code = curl_getinfo($ch, CURLINFO_HTTP_CODE); if ($http_code == 401) { - $status = 'Dynamic DNS: (Error) Bad authentication attempt because of a wrong API Key.'; + $status = 'Dynamic DNS: (Error) Bad authentication attempt because of a wrong API Key.'; } elseif ($http_code == 403) { $status = 'Dynamic DNS: (Error) Access to the resource is denied. Mainly due to a lack of permissions to access it!'; } elseif ($http_code == 201) { diff --git a/dns/dyndns/src/www/services_dyndns_edit.php b/dns/dyndns/src/www/services_dyndns_edit.php index b503bdbb1..388cbbcbe 100644 --- a/dns/dyndns/src/www/services_dyndns_edit.php +++ b/dns/dyndns/src/www/services_dyndns_edit.php @@ -318,7 +318,7 @@ include("head.inc");