From ded492c83adead5fa4cbf6c7b2eb3fc680fb9757 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Fri, 12 Apr 2024 00:52:06 +0000 Subject: [PATCH] fix bugs --- Admin/Install/Navigation.install.json | 6 +++--- Admin/Install/SearchCommands.php | 4 ++++ 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/Admin/Install/Navigation.install.json b/Admin/Install/Navigation.install.json index a588614..c264bbd 100755 --- a/Admin/Install/Navigation.install.json +++ b/Admin/Install/Navigation.install.json @@ -19,7 +19,7 @@ "type": 2, "subtype": 1, "name": "General", - "uri": "{/base}/help/general?{?}", + "uri": "{/base}/help/general", "target": "self", "icon": null, "order": 5, @@ -34,7 +34,7 @@ "type": 2, "subtype": 1, "name": "Modules", - "uri": "{/base}/help/module/list?{?}", + "uri": "{/base}/help/module/list", "target": "self", "icon": null, "order": 10, @@ -49,7 +49,7 @@ "type": 2, "subtype": 1, "name": "Developer", - "uri": "{/base}/help/developer?{?}", + "uri": "{/base}/help/developer", "target": "self", "icon": null, "order": 15, diff --git a/Admin/Install/SearchCommands.php b/Admin/Install/SearchCommands.php index 2c9df1d..a4247e1 100755 --- a/Admin/Install/SearchCommands.php +++ b/Admin/Install/SearchCommands.php @@ -22,6 +22,7 @@ return [ [ 'dest' => '\Modules\Help\Controller\SearchController:searchHelp', 'verb' => RouteVerb::ANY, + 'active' => true, 'permission' => [ 'module' => SearchController::NAME, 'type' => PermissionType::READ, @@ -33,6 +34,7 @@ return [ [ 'dest' => '\Modules\Help\Controller\SearchController:searchHelp', 'verb' => RouteVerb::ANY, + 'active' => true, 'permission' => [ 'module' => SearchController::NAME, 'type' => PermissionType::READ, @@ -44,6 +46,7 @@ return [ [ 'dest' => '\Modules\Help\Controller\SearchController:searchHelp', 'verb' => RouteVerb::ANY, + 'active' => true, 'permission' => [ 'module' => SearchController::NAME, 'type' => PermissionType::READ, @@ -55,6 +58,7 @@ return [ [ 'dest' => '\Modules\Help\Controller\SearchController:searchHelp', 'verb' => RouteVerb::ANY, + 'active' => true, 'permission' => [ 'module' => SearchController::NAME, 'type' => PermissionType::READ,