diff --git a/settings/apps.php b/settings/apps.php
index 3524f65d6acf71dd85b9b5aa4be897bdbaf6a6d4..686972c334386748828a210b7c3dac17144e8b27 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;