diff options
Diffstat (limited to 'lib/private/app.php')
-rw-r--r-- | lib/private/app.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/private/app.php b/lib/private/app.php index 74b21b2b107..6c6f79dfa9d 100644 --- a/lib/private/app.php +++ b/lib/private/app.php @@ -421,7 +421,6 @@ class OC_App { */ public static function getSettingsNavigation() { $l = \OC::$server->getL10N('lib'); - $defaults = new OC_Defaults(); $settings = array(); // by default, settings only contain the help menu @@ -432,7 +431,7 @@ class OC_App { array( "id" => "help", "order" => 1000, - "href" => $defaults->getKnowledgeBaseUrl(), + "href" => OC_Helper::linkToRoute("settings_help"), "name" => $l->t("Help"), "icon" => OC_Helper::imagePath("settings", "help.svg") ) |