[BUGFIX] Wrong validation on domain

This commit is contained in:
Simon Sessingø
2015-12-19 18:25:18 +01:00
parent ce27196083
commit 3510c4c5a4
+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;
}
}