aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2020-01-22 20:26:10 +0100
committerMario <mario@mariovavti.com>2020-01-22 20:26:10 +0100
commit6c9130be469173b1cc63660beb5562a157a270f8 (patch)
treed756097b04957ef71dc7082e76b00c9c2b10406e /include
parent51f00cda92c38a0a700bb5144a5b88718ef0f3a3 (diff)
parentb81b18814ef2b4600224a08c6f97e4f1f227982d (diff)
downloadvolse-hubzilla-6c9130be469173b1cc63660beb5562a157a270f8.tar.gz
volse-hubzilla-6c9130be469173b1cc63660beb5562a157a270f8.tar.bz2
volse-hubzilla-6c9130be469173b1cc63660beb5562a157a270f8.zip
Merge branch 'dev' into 'dev'
Don't validate domain with PTR record; remove uneccessary CNAME check; add IPv6 check See merge request hubzilla/core!1818
Diffstat (limited to 'include')
-rw-r--r--include/network.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/network.php b/include/network.php
index f6992291d..c2edb4f8a 100644
--- a/include/network.php
+++ b/include/network.php
@@ -505,7 +505,7 @@ function z_dns_check($h,$check_mx = 0) {
// Otherwise we will assume dns_get_record() works as documented
- $opts = DNS_A + DNS_CNAME + DNS_PTR;
+ $opts = DNS_A + DNS_AAAA;
if($check_mx)
$opts += DNS_MX;