summaryrefslogtreecommitdiffstats
path: root/lib/private/app.php
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@owncloud.com>2015-08-11 14:20:25 +0200
committerJoas Schilling <nickvergessen@owncloud.com>2015-08-11 14:20:25 +0200
commit32ccd6621465457fe95c77b4be9f9e0b3ec819ba (patch)
tree067783c9edffe8b3f0e9f4ec0e5312da4b430b65 /lib/private/app.php
parentc16fd29f2924cd9fbd46b4d3f2e4505a55a3b57d (diff)
downloadnextcloud-server-32ccd6621465457fe95c77b4be9f9e0b3ec819ba.tar.gz
nextcloud-server-32ccd6621465457fe95c77b4be9f9e0b3ec819ba.zip
Revert "make knowledge base url configurable"
This reverts commit 8fb89056bd2f99b1df7dc7a3970fc293272c8ab6.
Diffstat (limited to 'lib/private/app.php')
-rw-r--r--lib/private/app.php3
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")
)