Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2012-09-04 13:28:49 +0400
committerThomas Müller <thomas.mueller@tmit.eu>2012-09-04 13:28:49 +0400
commit1063034e937724101d562c6acaf9ba2adc423179 (patch)
tree2817359990b8f911fab5d1da71932155c3e2cb3c /settings/apps.php
parente87387c956b8009a215bd068b7518829ee28f100 (diff)
Update settings/apps.php
respect coding style
Diffstat (limited to 'settings/apps.php')
-rw-r--r--settings/apps.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/settings/apps.php b/settings/apps.php
index 3524f65d6ac..686972c3343 100644
--- a/settings/apps.php
+++ b/settings/apps.php
@@ -42,7 +42,7 @@ foreach($registeredApps as $app) {
OC_Log::write('core', 'App id "'.$app.'" has no name in appinfo', OC_Log::ERROR);
continue;
}
- $active=(OC_Appconfig::getValue($app,'enabled','no')=='yes')?true:false;
+ $active=(OC_Appconfig::getValue($app, 'enabled', 'no')=='yes')?true:false;
$info['active']=$active;
if(isset($info['shipped']) and ($info['shipped']=='true')) {
$info['internal']=true;