Fixes for issue #248

This commit is contained in:
Simon Sessingø
2017-08-01 21:09:18 +02:00
parent 3a7b27796a
commit 883d8a6b0e
4 changed files with 13 additions and 18 deletions
@@ -53,7 +53,7 @@ class RouteController extends LoadableRoute implements IControllerRoute
if (strpos($name, '.') !== false) {
$found = array_search(substr($name, strrpos($name, '.') + 1), $this->names, false);
if ($found !== false) {
$method = $found;
$method = (string)$found;
}
}