diff options
author | Mario <mario@mariovavti.com> | 2020-01-22 20:26:10 +0100 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2020-01-22 20:26:10 +0100 |
commit | 6c9130be469173b1cc63660beb5562a157a270f8 (patch) | |
tree | d756097b04957ef71dc7082e76b00c9c2b10406e | |
parent | 51f00cda92c38a0a700bb5144a5b88718ef0f3a3 (diff) | |
parent | b81b18814ef2b4600224a08c6f97e4f1f227982d (diff) | |
download | volse-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
-rw-r--r-- | include/network.php | 2 |
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; |