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.php6
1 files changed, 2 insertions, 4 deletions
diff --git a/core/Command/Status.php b/core/Command/Status.php
index 91c79d27670..177c63f0405 100644
--- a/core/Command/Status.php
+++ b/core/Command/Status.php
@@ -38,13 +38,11 @@ class Status extends Base {
}
protected function execute(InputInterface $input, OutputInterface $output) {
- $installed = (bool) \OC::$server->getConfig()->getSystemValue('installed', false);
-
$values = array(
- 'installed' => $installed,
+ 'installed' => (bool) \OC::$server->getConfig()->getSystemValue('installed', false),
'version' => implode('.', \OCP\Util::getVersion()),
'versionstring' => \OC_Util::getVersionString(),
- 'edition' => $installed ? \OC_Util::getEditionString() : '',
+ 'edition' => '',
);
$this->writeArrayInOutputFormat($input, $output, $values);