Update settings/ajax/apps/ocs.php

respect coding style
This commit is contained in:
Thomas Müller 2012-09-04 12:31:28 +03:00
parent 7ab5256922
commit 8bea9f34e6
1 changed files with 4 additions and 4 deletions

View File

@ -7,13 +7,13 @@
*/ */
// Init owncloud // Init owncloud
require_once('../../../lib/base.php'); require_once '../../../lib/base.php';
OC_JSON::checkAdminUser(); OC_JSON::checkAdminUser();
$l = OC_L10N::get('core'); $l = OC_L10N::get('core');
if(OC_Config::getValue('appstoreenabled', true)==false){ if(OC_Config::getValue('appstoreenabled', true)==false) {
OCP\JSON::success(array('type' => 'external', 'data' => array())); OCP\JSON::success(array('type' => 'external', 'data' => array()));
} }
@ -27,11 +27,11 @@ $apps=array();
// apps from external repo via OCS // apps from external repo via OCS
$catagoryNames=OC_OCSClient::getCategories(); $catagoryNames=OC_OCSClient::getCategories();
if(is_array($catagoryNames)){ if(is_array($catagoryNames)) {
$categories=array_keys($catagoryNames); $categories=array_keys($catagoryNames);
$page=0; $page=0;
$filter='approved'; $filter='approved';
$externalApps=OC_OCSClient::getApplications($categories,$page,$filter); $externalApps=OC_OCSClient::getApplications($categories, $page, $filter);
foreach($externalApps as $app){ foreach($externalApps as $app){
// show only external apps that aren't enabled yet // show only external apps that aren't enabled yet
$local=false; $local=false;