diff options
author | Max Kostikov <max@kostikov.co> | 2018-11-13 11:37:32 +0100 |
---|---|---|
committer | Max Kostikov <max@kostikov.co> | 2018-11-13 11:37:32 +0100 |
commit | 2f59d7873789885d4311d99db7fa6bce9f212810 (patch) | |
tree | 8da1c8e444d12bf23e58eeb9b4f0e98c5218759b | |
parent | 29f1f9c8727f281b52fed76ce4be0c5c66a7d038 (diff) | |
download | volse-hubzilla-2f59d7873789885d4311d99db7fa6bce9f212810.tar.gz volse-hubzilla-2f59d7873789885d4311d99db7fa6bce9f212810.tar.bz2 volse-hubzilla-2f59d7873789885d4311d99db7fa6bce9f212810.zip |
Remove fetch_image_from_url() because of functions duplicate
-rw-r--r-- | include/photos.php | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/include/photos.php b/include/photos.php index d0c5f77fc..d5553b495 100644 --- a/include/photos.php +++ b/include/photos.php @@ -1011,23 +1011,3 @@ function profile_photo_set_profile_perms($uid, $profileid = 0) { } } } - -function fetch_image_from_url($url,&$mimetype) { - - $redirects = 0; - $x = z_fetch_url($url,true,$redirects,[ 'novalidate' => true ]); - if($x['success']) { - $hdrs = []; - $h = explode("\n",$x['header']); - foreach ($h as $l) { - list($k,$v) = array_map("trim", explode(":", trim($l), 2)); - $hdrs[strtolower($k)] = $v; - } - if (array_key_exists('content-type', $hdrs)) - $mimetype = $hdrs['content-type']; - - return $x['body']; - } - - return EMPTY_STR; -}
\ No newline at end of file |