From b8137fc294f4ac1482f605211db25059bb6bbbf0 Mon Sep 17 00:00:00 2001 From: Leonardo Amaral Date: Tue, 12 Aug 2014 15:03:02 -0300 Subject: [PATCH] * Fix a typo mismatch in /etc/inc/dyndns.class for CloudFlare URL entry. --- etc/inc/dyndns.class | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etc/inc/dyndns.class b/etc/inc/dyndns.class index 73f55ad0fb..2177360147 100644 --- a/etc/inc/dyndns.class +++ b/etc/inc/dyndns.class @@ -620,7 +620,7 @@ $needsIP = TRUE; $dnsServer ='www.cloudflare.com'; $dnsHost = str_replace(' ','', $this->_dnsHost); - $URL = "https://{$dnsServer}/api.html?a=DIUP&email={$this->_dnsUser}&tkn={$this->_dnsPass}&ip={$this->dnsIP}&hosts={$dnsHost}"; + $URL = "https://{$dnsServer}/api.html?a=DIUP&email={$this->_dnsUser}&tkn={$this->_dnsPass}&ip={$this->_dnsIP}&hosts={$dnsHost}"; curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE); curl_setopt($ch, CURLOPT_URL, $URL); break;