diff options
Diffstat (limited to 'lib/private/appframework/routing/routeactionhandler.php')
-rw-r--r-- | lib/private/appframework/routing/routeactionhandler.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/appframework/routing/routeactionhandler.php b/lib/private/appframework/routing/routeactionhandler.php index 7fb56f14eab..2b9dc38dc43 100644 --- a/lib/private/appframework/routing/routeactionhandler.php +++ b/lib/private/appframework/routing/routeactionhandler.php @@ -37,6 +37,6 @@ class RouteActionHandler { } public function __invoke($params) { - App::main($this->controllerName, $this->actionName, $params, $this->container); + App::main($this->controllerName, $this->actionName, $this->container, $params); } } |