From: Adam Magness Date: Sun, 28 Jan 2018 14:02:19 +0000 (-0500) Subject: Fix old function call X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=c6443572e352b10b09b1ed045240ed078e6aa084;p=friendica.git Fix old function call Fix missed fetch_url() call --- diff --git a/src/Protocol/PortableContact.php b/src/Protocol/PortableContact.php index f2def21ec1..fb9a725f08 100644 --- a/src/Protocol/PortableContact.php +++ b/src/Protocol/PortableContact.php @@ -1327,7 +1327,7 @@ class PortableContact } // Discover Friendica, Hubzilla and Diaspora servers - $serverdata = fetch_url("http://the-federation.info/pods.json"); + $serverdata = Network::fetchUrl("http://the-federation.info/pods.json"); if ($serverdata) { $servers = json_decode($serverdata);