From: Hypolite Petovan Date: Thu, 26 Jan 2023 03:31:07 +0000 (-0500) Subject: Check the image URL has a host before retrieving it in Photo::importProfilePhoto X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=be105db759c89c3fa0601f4426ec4b26e644615f;p=friendica.git Check the image URL has a host before retrieving it in Photo::importProfilePhoto - Address https://github.com/friendica/friendica/issues/12486#issuecomment-1404324012 --- diff --git a/src/Model/Photo.php b/src/Model/Photo.php index 9623f5622e..bf2f7bb8e3 100644 --- a/src/Model/Photo.php +++ b/src/Model/Photo.php @@ -583,7 +583,7 @@ class Photo $photo_failure = false; $filename = basename($image_url); - if (!empty($image_url)) { + if (!empty($image_url) && @parse_url($image_url, PHP_URL_HOST)) { $ret = DI::httpClient()->get($image_url, HttpClientAccept::IMAGE); Logger::debug('Got picture', ['Content-Type' => $ret->getHeader('Content-Type'), 'url' => $image_url]); $img_str = $ret->getBody();