[BUGFIX] Bugfixes.

- Fixed not validating domain on
- Other small changes.
This commit is contained in:
Simon Sessingø
2015-12-19 18:07:18 +01:00
parent ed886cb7b3
commit ce27196083
3 changed files with 19 additions and 1 deletions
+6
View File
@@ -133,6 +133,12 @@ class RouterBase {
continue;
}
if($route->getGroup() !== null) {
if($route->getGroup()->matchDomain($this->request) === false) {
continue;
}
}
$routeNotAllowed = false;
$this->loadedRoute = $route;