diff --git a/CHANGELOG.md b/CHANGELOG.md index d254b92f..8cb3b7be 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,6 @@ **Merged pull requests:** - Release v2.1.5-2023.09 🎉 -- Support for IDN domains [\#252](https://github.com/torrentpier/torrentpier-lts/pull/252) ([belomaxorka](https://github.com/belomaxorka)) - Fixed cache directory auto-creating with SQLite [\#247](https://github.com/torrentpier/torrentpier-lts/pull/247) ([belomaxorka](https://github.com/belomaxorka)) - Minor improvements [\#245](https://github.com/torrentpier/torrentpier-lts/pull/245), [\#246](https://github.com/torrentpier/torrentpier-lts/pull/246), [\#248](https://github.com/torrentpier/torrentpier-lts/pull/248), [\#249](https://github.com/torrentpier/torrentpier-lts/pull/249), [\#250](https://github.com/torrentpier/torrentpier-lts/pull/250), [\#251](https://github.com/torrentpier/torrentpier-lts/pull/251) ([belomaxorka](https://github.com/belomaxorka)) diff --git a/library/config.php b/library/config.php index de2b1105..c106d6af 100644 --- a/library/config.php +++ b/library/config.php @@ -9,7 +9,7 @@ $bb_cfg['js_ver'] = $bb_cfg['css_ver'] = 1; // Primary domain name $domain_name = 'torrentpier.com'; // enter here your primary domain name of your site -$domain_name = (!empty($_SERVER['SERVER_NAME'])) ? idn_to_utf8($_SERVER['SERVER_NAME']) : $domain_name; +$domain_name = (!empty($_SERVER['SERVER_NAME'])) ? $_SERVER['SERVER_NAME'] : $domain_name; // Domain secure (HTTPS) $domain_ssl = false;