Merge pull request #9 from nextcloud/remove-links-to-documentation-in-menu

Remove "Help" link from personal sidebar
This commit is contained in:
Jan-Christoph Borchardt 2016-06-06 23:02:03 +02:00
commit d7375de816
1 changed files with 4 additions and 2 deletions

View File

@ -421,7 +421,9 @@ class OC_App {
$settings = array(); $settings = array();
// by default, settings only contain the help menu // by default, settings only contain the help menu
if (OC_Util::getEditionString() === '' && /*
* FIXME: Add help sidebar back once documentation is properly branded.
if (OC_Util::getEditionString() === '' &&
\OC::$server->getSystemConfig()->getValue('knowledgebaseenabled', true) == true \OC::$server->getSystemConfig()->getValue('knowledgebaseenabled', true) == true
) { ) {
$settings = array( $settings = array(
@ -433,7 +435,7 @@ class OC_App {
"icon" => $urlGenerator->imagePath("settings", "help.svg") "icon" => $urlGenerator->imagePath("settings", "help.svg")
) )
); );
} }*/
// if the user is logged-in // if the user is logged-in
if (OC_User::isLoggedIn()) { if (OC_User::isLoggedIn()) {