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
1 changed files with 2 additions and 2 deletions

View File

@ -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;
}
}
?>
?>