]> git.mxchange.org Git - friendica.git/commitdiff
[BUGFIX] Network: Remove URL/domain DNS_PTR checks
authorMarcus Müller <marcusmueller@protonmail.com>
Thu, 12 Apr 2018 17:28:52 +0000 (19:28 +0200)
committerGitHub <noreply@github.com>
Thu, 12 Apr 2018 17:28:52 +0000 (19:28 +0200)
src/Util/Network.php

index bbdc51fbbb535f2e1adef957c8dbeda77d5adae4..4a11f9259579e31272b57fdfbe9a1c6d363a8212 100644 (file)
@@ -446,7 +446,7 @@ class Network
                /// @TODO Really suppress function outcomes? Why not find them + debug them?
                $h = @parse_url($url);
 
-               if ((is_array($h)) && (@dns_get_record($h['host'], DNS_A + DNS_CNAME + DNS_PTR) || filter_var($h['host'], FILTER_VALIDATE_IP) )) {
+               if ((is_array($h)) && (@dns_get_record($h['host'], DNS_A + DNS_CNAME) || filter_var($h['host'], FILTER_VALIDATE_IP) )) {
                        return $url;
                }
 
@@ -471,7 +471,7 @@ class Network
 
                $h = substr($addr, strpos($addr, '@') + 1);
 
-               if (($h) && (dns_get_record($h, DNS_A + DNS_CNAME + DNS_PTR + DNS_MX) || filter_var($h, FILTER_VALIDATE_IP) )) {
+               if (($h) && (dns_get_record($h, DNS_A + DNS_CNAME + DNS_MX) || filter_var($h, FILTER_VALIDATE_IP) )) {
                        return true;
                }
                return false;