summaryrefslogtreecommitdiffstats
path: root/settings
diff options
context:
space:
mode:
authorJörn Friedrich Dreyer <jfd@butonic.de>2012-08-27 20:35:05 +0200
committerJörn Friedrich Dreyer <jfd@butonic.de>2012-08-27 20:35:05 +0200
commit84a5faff36c9afb550db05091341bc08bcb9b57d (patch)
treed639aaf7cc4d77895ea8bec8cee13f91b8f082bc /settings
parent3b83c7fa74eb90e02317528dd672fa2afe457b77 (diff)
downloadnextcloud-server-84a5faff36c9afb550db05091341bc08bcb9b57d.tar.gz
nextcloud-server-84a5faff36c9afb550db05091341bc08bcb9b57d.zip
remove files_imageviewer and files_texteditor from blacklist so they can be activated in a multi apps environment
Diffstat (limited to 'settings')
-rw-r--r--settings/apps.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/settings/apps.php b/settings/apps.php
index 6feede7741c..27bbcc9adab 100644
--- a/settings/apps.php
+++ b/settings/apps.php
@@ -32,7 +32,8 @@ OC_App::setActiveNavigationEntry( "core_apps" );
$registeredApps=OC_App::getAllApps();
$apps=array();
-$blacklist=array('files','files_imageviewer','files_textviewer');//we dont want to show configuration for these
+//TODO which apps do we want to blacklist and how do we integrate blacklisting with the multi apps folder feature
+$blacklist=array('files');//we dont want to show configuration for these
foreach($registeredApps as $app){
if(array_search($app,$blacklist)===false){