From 0f0b649e8d92a70c9933ec6022e2bce716c413f7 Mon Sep 17 00:00:00 2001 From: Michael Date: Wed, 11 May 2022 11:06:14 +0000 Subject: [PATCH] Replace unparse function --- src/Util/Network.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/Util/Network.php b/src/Util/Network.php index 7d935d55f0..af4d18b4ab 100644 --- a/src/Util/Network.php +++ b/src/Util/Network.php @@ -26,6 +26,7 @@ use Friendica\Core\Logger; use Friendica\DI; use Friendica\Model\Contact; use Friendica\Network\HTTPException\NotModifiedException; +use GuzzleHttp\Psr7\Uri; class Network { @@ -436,7 +437,7 @@ class Network * @param array $parsed URL parts * * @return string The glued URL. - * @deprecated since version 2021.12, use a UriInterface object like GuzzleHttp\Psr7\Uri instead + * @deprecated since version 2021.12, use GuzzleHttp\Psr7\Uri::fromParts($parts) instead */ public static function unparseURL(array $parsed) { @@ -473,7 +474,7 @@ class Network $parts = parse_url($uri); if (!empty($parts['scheme']) && !empty($parts['host'])) { $parts['host'] = idn_to_ascii($parts['host']); - $uri = self::unparseURL($parts); + $uri = Uri::fromParts($parts); } else { $parts = explode('@', $uri); if (count($parts) == 2) {