From 68229009ac23ebc518c3f10fac711c5968b5b2ab Mon Sep 17 00:00:00 2001 From: =?utf8?q?Bj=C3=B6rn=20Schie=C3=9Fle?= Date: Wed, 12 Jun 2013 16:20:23 +0200 Subject: [PATCH] make main menu aware of the different owncloud editions --- lib/app.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/app.php b/lib/app.php index 272c53f2706..4f1b6a816dd 100644 --- a/lib/app.php +++ b/lib/app.php @@ -340,7 +340,8 @@ class OC_App{ $settings = array(); // by default, settings only contain the help menu - if(OC_Config::getValue('knowledgebaseenabled', true)==true) { + if(OC_Util::getEditionString() === '' && + OC_Config::getValue('knowledgebaseenabled', true)==true) { $settings = array( array( "id" => "help", -- 2.39.5