diff options
author | Renato Botelho <garga@FreeBSD.org> | 2014-08-26 17:42:01 -0300 |
---|---|---|
committer | Renato Botelho <garga@FreeBSD.org> | 2014-08-26 17:42:01 -0300 |
commit | ae14317d208db9a5e4d3770dd32fa7867ec7fec9 (patch) | |
tree | 4033f4c9c085bb43763716018add8835e0d9b4ee /etc | |
parent | 81ca5f885d15068d000d92cdfa3c8d5d156571c4 (diff) | |
parent | b8137fc294f4ac1482f605211db25059bb6bbbf0 (diff) | |
download | pfsense-ae14317d208db9a5e4d3770dd32fa7867ec7fec9.zip pfsense-ae14317d208db9a5e4d3770dd32fa7867ec7fec9.tar.gz |
Merge pull request #1255 from leleobhz/master
Diffstat (limited to 'etc')
-rw-r--r-- | etc/inc/dyndns.class | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/inc/dyndns.class b/etc/inc/dyndns.class index 73f55ad..2177360 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; |