Skip to content

Commit

Permalink
Bug fix for www. domains and aliases.
Browse files Browse the repository at this point in the history
  • Loading branch information
Marty committed Apr 20, 2015
1 parent 635b799 commit f5b5183
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions server/tempest/Tempest/Config.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ public function __construct($name)
{
$this->data = $data['*'];

if (array_key_exists(HOST, $data))
if (array_key_exists($compareHost, $data))
{
// Consume host-specific configuration and overwrite where necessary.
$this->data = array_replace_recursive($this->data, $data[HOST]);
$this->data = array_replace_recursive($this->data, $data[$compareHost]);
}
}
else
Expand Down

0 comments on commit f5b5183

Please sign in to comment.