[TASK] Moved group-middleware rendering to routeRequest to ensure all route-urls has been initialised.

- Optimisations.
This commit is contained in:
Simon Sessingø
2016-04-09 15:26:18 +02:00
parent 491e920cfc
commit 22563671c5
2 changed files with 18 additions and 16 deletions
+1 -6
View File
@@ -102,13 +102,8 @@ class RouterRoute extends RouterEntry {
return true;
}
}
} else {
if(strtolower($this->getAlias()) === strtolower($name)) {
return true;
}
}
return false;
return strtolower($this->getAlias()) === strtolower($name);
}
/**