1
0
mirror of https://github.com/moparisthebest/wallabag synced 2024-08-13 16:54:00 -04:00

Subdomain to domain failover left incorrect leading '.'. This has been remedied.

This commit is contained in:
Jason 2013-11-30 13:02:18 -05:00
parent 2ab37d6205
commit 16ac4e3dbe

View File

@ -114,7 +114,7 @@ class SiteConfig
$split = explode('.', $host); $split = explode('.', $host);
if (count($split) > 1) { if (count($split) > 1) {
array_shift($split); array_shift($split);
$try[] = '.'.implode('.', $split); $try[] = implode('.', $split);
} }
foreach ($try as $h) { foreach ($try as $h) {
if (array_key_exists($h, self::$config_cache)) { if (array_key_exists($h, self::$config_cache)) {