aboutsummaryrefslogtreecommitdiffstats
path: root/core/Controller/NavigationController.php
diff options
context:
space:
mode:
Diffstat (limited to 'core/Controller/NavigationController.php')
-rw-r--r--core/Controller/NavigationController.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/Controller/NavigationController.php b/core/Controller/NavigationController.php
index d5d8563b593..5850025f450 100644
--- a/core/Controller/NavigationController.php
+++ b/core/Controller/NavigationController.php
@@ -32,8 +32,8 @@ class NavigationController extends Controller {
/** @var INavigationManager */
private $navigationManager;
- public function __construct(IRequest $request, INavigationManager $navigationManager) {
- parent::__construct('core', $request);
+ public function __construct(string $appName, IRequest $request, INavigationManager $navigationManager) {
+ parent::__construct($appName, $request);
$this->navigationManager = $navigationManager;
}