Merge pull request #89 from skipperbent/development

[BUGFIX] Fixed notice
This commit is contained in:
Simon Sessingø
2016-04-09 15:39:12 +02:00
+4 -1
View File
@@ -102,8 +102,11 @@ class RouterRoute extends RouterEntry {
return true;
}
}
} else {
return strtolower($this->getAlias()) === strtolower($name);
}
return strtolower($this->getAlias()) === strtolower($name);
return false;
}
/**