Replace remaining occurrences of Network::curl

This commit is contained in:
Hypolite Petovan 2020-07-21 21:39:59 -04:00
parent 1998b7811b
commit ec3ec3b78a
2 changed files with 3 additions and 2 deletions

View file

@ -359,7 +359,7 @@ class GServer
// When the base path doesn't seem to contain a social network we try the complete path.
// Most detectable system have to be installed in the root directory.
// We checked the base to avoid false positives.
$curlResult = Network::curl($url, false, ['timeout' => $xrd_timeout]);
$curlResult = DI::httpRequest()->get($url, false, ['timeout' => $xrd_timeout]);
if ($curlResult->isSuccess()) {
$urldata = self::analyseRootHeader($curlResult, $serverdata);
$urldata = self::analyseRootBody($curlResult, $urldata, $url);