Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2013-11-25 14:36:33 +0400
committerThomas Müller <thomas.mueller@tmit.eu>2013-11-25 14:36:33 +0400
commit993fea2f05ae300fd1036d2a82ba02413f2649d4 (patch)
tree0c30b2b733d9ab0a8fe35a5117dc8866e503bfe8 /lib/private/appframework/routing
parentaeefe48cba49a869bfe93cdf10cc3da79914e080 (diff)
fix appframework routing
Diffstat (limited to 'lib/private/appframework/routing')
-rw-r--r--lib/private/appframework/routing/routeactionhandler.php2
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);
}
}