diff --git a/src/Util/Network.php b/src/Util/Network.php index f0338e048..c1ea6e354 100644 --- a/src/Util/Network.php +++ b/src/Util/Network.php @@ -36,7 +36,7 @@ class Network */ public static function fetchUrl($url, $binary = false, &$redirects = 0, $timeout = 0, $accept_content = null, $cookiejar = 0) { - $ret = fetchUrlFull($url, $binary, $redirects, $timeout, $accept_content, $cookiejar); + $ret = self::fetchUrlFull($url, $binary, $redirects, $timeout, $accept_content, $cookiejar); return $ret['body']; }