[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
+1 -1
View File
@@ -10,7 +10,7 @@ class RouterGroup extends RouterEntry {
parent::__construct();
}
protected function matchDomain(Request $request) {
public function matchDomain(Request $request) {
if($this->domain !== null) {
if(is_array($this->domain)) {