]> git.mxchange.org Git - friendica.git/commitdiff
Standards
authorMichael <heluecht@pirati.ca>
Sun, 8 Mar 2020 19:07:36 +0000 (19:07 +0000)
committerMichael <heluecht@pirati.ca>
Sun, 8 Mar 2020 19:07:36 +0000 (19:07 +0000)
src/Network/Probe.php

index ba58ff3d0437a469172bb7d2d4629cb10c9bceb4..6c64f790ec71adad62e832a4036e774cb0cc1d5a 100644 (file)
@@ -144,10 +144,10 @@ class Probe
 
                // Handles the case when the hostname contains the scheme
                if (!parse_url($host, PHP_URL_SCHEME)) {
-                       $ssl_url = "https://".$host."/.well-known/host-meta";
-                       $url = "http://".$host."/.well-known/host-meta";
+                       $ssl_url = "https://" . $host . "/.well-known/host-meta";
+                       $url = "http://" . $host . "/.well-known/host-meta";
                } else {
-                       $ssl_url = $host."/.well-known/host-meta";
+                       $ssl_url = $host . "/.well-known/host-meta";
                        $url = '';
                }
 
@@ -168,7 +168,7 @@ class Probe
                        return false;
                }
 
-               if (!is_object($xrd) && ! empty($url)) {
+               if (!is_object($xrd) && !empty($url)) {
                        $curlResult = Network::curl($url, false, ['timeout' => $xrd_timeout, 'accept_content' => 'application/xrd+xml']);
                        $connection_error = ($curlResult->getErrorNumber() == CURLE_COULDNT_CONNECT) || ($curlResult->getReturnCode() == 0);
                        if ($curlResult->isTimeout()) {