From c849c1025b70a42c42e832ebb9844f2d51657aed Mon Sep 17 00:00:00 2001
From: Christian Schneider
Date: Wed, 10 Jul 2024 16:50:49 +0200
Subject: Work around idn_to_ascii not allowing empty string in PHP 8.4 by
 using non-empty but falsey string

---
 it_url.class | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/it_url.class b/it_url.class
index de20007..8333f76 100644
--- a/it_url.class
+++ b/it_url.class
@@ -62,7 +62,7 @@ function __construct($url = null)
 	$this->hostname = preg_replace('/^www\./', '', $this->realhostname);
 	$this->path = ltrim($comp['path'] . ($comp['query'] ? '?' . $comp['query'] : ''), '/');	# $this->path is named poorly, it includes path and query
 	$this->url = "$this->protocol://$this->realhostname" . ($this->port != $protoport ? $this->explicitport : '') . "/$this->path";
-	$this->realhostname = idn_to_ascii($this->realhostname, IDNA_DEFAULT, INTL_IDNA_VARIANT_UTS46) ?: $this->realhostname;		# punycode or original
+	$this->realhostname = idn_to_ascii($this->realhostname ?: "0", IDNA_DEFAULT, INTL_IDNA_VARIANT_UTS46) ?: $this->realhostname;		# punycode or original
 }
 
 
-- 
cgit v1.2.3