Merge pull request #56 from skipperbent/development

[BUGFIX] Wrong validation on domain
This commit is contained in:
Simon Sessingø
2015-12-19 18:25:56 +01:00
+1 -1
View File
@@ -134,7 +134,7 @@ class RouterBase {
}
if($route->getGroup() !== null) {
if($route->getGroup()->matchDomain($this->request) === false) {
if($route->getGroup()->matchDomain($this->request) === null) {
continue;
}
}