summaryrefslogtreecommitdiffstats
path: root/core/command/status.php
diff options
context:
space:
mode:
Diffstat (limited to 'core/command/status.php')
-rw-r--r--core/command/status.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/command/status.php b/core/command/status.php
index 3859f69febc..737113d4f85 100644
--- a/core/command/status.php
+++ b/core/command/status.php
@@ -37,7 +37,7 @@ class Status extends Base {
protected function execute(InputInterface $input, OutputInterface $output) {
$values = array(
- 'installed' => \OC_Config::getValue('installed') ? 'true' : 'false',
+ 'installed' => (bool) \OC_Config::getValue('installed'),
'version' => implode('.', \OC_Util::getVersion()),
'versionstring' => \OC_Util::getVersionString(),
'edition' => \OC_Util::getEditionString(),