summaryrefslogtreecommitdiffstats
path: root/settings/apps.php
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2012-09-04 12:28:49 +0300
committerThomas Müller <thomas.mueller@tmit.eu>2012-09-04 12:28:49 +0300
commit1063034e937724101d562c6acaf9ba2adc423179 (patch)
tree2817359990b8f911fab5d1da71932155c3e2cb3c /settings/apps.php
parente87387c956b8009a215bd068b7518829ee28f100 (diff)
downloadnextcloud-server-1063034e937724101d562c6acaf9ba2adc423179.tar.gz
nextcloud-server-1063034e937724101d562c6acaf9ba2adc423179.zip
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;