mirror of
https://git.sekbaer.de/Friendica/friendica.git
synced 2025-06-11 09:34:26 +02:00
Make "HTTPRequest::fetchUrlFull" dynamic
This commit is contained in:
parent
8793096c16
commit
3b4cf87c95
4 changed files with 6 additions and 6 deletions
|
@ -365,9 +365,9 @@ class HTTPRequest
|
|||
* @return CurlResult With all relevant information, 'body' contains the actual fetched content.
|
||||
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
||||
*/
|
||||
public static function fetchUrlFull(string $url, bool $binary = false, int $timeout = 0, string $accept_content = '', string $cookiejar = '', int &$redirects = 0)
|
||||
public function fetchUrlFull(string $url, bool $binary = false, int $timeout = 0, string $accept_content = '', string $cookiejar = '', int &$redirects = 0)
|
||||
{
|
||||
return self::curl(
|
||||
return $this->curl(
|
||||
$url,
|
||||
$binary,
|
||||
[
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue