Move fetch_url
move fetch_url function
This commit is contained in:
+2
-1
@@ -10,6 +10,7 @@ use Friendica\Core\System;
|
||||
use Friendica\Database\DBM;
|
||||
use Friendica\Model\Photo;
|
||||
use Friendica\Object\Image;
|
||||
use Friendica\Util\Network;
|
||||
|
||||
define('PROXY_DEFAULT_TIME', 86400); // 1 Day
|
||||
|
||||
@@ -161,7 +162,7 @@ function proxy_init(App $a) {
|
||||
// It shouldn't happen but it does - spaces in URL
|
||||
$_REQUEST['url'] = str_replace(' ', '+', $_REQUEST['url']);
|
||||
$redirects = 0;
|
||||
$img_str = fetch_url($_REQUEST['url'], true, $redirects, 10);
|
||||
$img_str = Network::fetchURL($_REQUEST['url'], true, $redirects, 10);
|
||||
|
||||
$tempfile = tempnam(get_temppath(), 'cache');
|
||||
file_put_contents($tempfile, $img_str);
|
||||
|
||||
Reference in New Issue
Block a user