PHP Deprecated: idn_to_ascii(): INTL_IDNA_VARIANT_2003 is deprecated in FreshRSS/lib/lib_rss.php on line 65
From https://secure.php.net/manual/en/function.idn-to-ascii.php I believe this change to
|
$puny = idn_to_ascii($idn); |
should work:
$puny = idn_to_ascii($idn, 0, INTL_IDNA_VARIANT_UTS46);