mirror of
https://github.com/moparisthebest/wallabag
synced 2025-01-11 05:38:06 -05:00
Subdomain to domain failover left incorrect leading '.'. This has been remedied.
This commit is contained in:
parent
2ab37d6205
commit
16ac4e3dbe
@ -114,7 +114,7 @@ class SiteConfig
|
||||
$split = explode('.', $host);
|
||||
if (count($split) > 1) {
|
||||
array_shift($split);
|
||||
$try[] = '.'.implode('.', $split);
|
||||
$try[] = implode('.', $split);
|
||||
}
|
||||
foreach ($try as $h) {
|
||||
if (array_key_exists($h, self::$config_cache)) {
|
||||
@ -181,4 +181,4 @@ class SiteConfig
|
||||
return $config;
|
||||
}
|
||||
}
|
||||
?>
|
||||
?>
|
||||
|
Loading…
Reference in New Issue
Block a user