From: Robin Appelman Date: Wed, 28 Sep 2011 20:39:41 +0000 (+0200) Subject: dissable app instalation from apps.owncloud.org interface X-Git-Tag: v3.0~101^2~55 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=3ebf1a5a3b717e99622c3ba6dd10300a3805471b;p=nextcloud-server.git dissable app instalation from apps.owncloud.org interface --- diff --git a/settings/apps.php b/settings/apps.php index 672cb18775e..27b4c17f9e6 100644 --- a/settings/apps.php +++ b/settings/apps.php @@ -43,21 +43,22 @@ foreach($registeredApps as $app){ } } -$catagoryNames=OC_OCSClient::getCategories(); -if(is_array($catagoryNames)){ - $categories=array_keys($catagoryNames); - $externalApps=OC_OCSClient::getApplications($categories); - foreach($externalApps as $app){ - $apps[]=array( - 'name'=>$app['name'], - 'id'=>$app['id'], - 'active'=>false, - 'description'=>$app['description'], - 'author'=>$app['personid'], - 'license'=>$app['license'], - ); - } -} +// dissabled for now +// $catagoryNames=OC_OCSClient::getCategories(); +// if(is_array($catagoryNames)){ +// $categories=array_keys($catagoryNames); +// $externalApps=OC_OCSClient::getApplications($categories); +// foreach($externalApps as $app){ +// $apps[]=array( +// 'name'=>$app['name'], +// 'id'=>$app['id'], +// 'active'=>false, +// 'description'=>$app['description'], +// 'author'=>$app['personid'], +// 'license'=>$app['license'], +// ); +// } +// }