diff options
author | Joas Schilling <nickvergessen@owncloud.com> | 2015-04-20 16:31:43 +0200 |
---|---|---|
committer | Joas Schilling <nickvergessen@owncloud.com> | 2015-04-20 17:03:19 +0200 |
commit | 2c396a708069bc4080a8c5273a69dbdfdaf0170e (patch) | |
tree | 54bb86376008c563866a9a1eea0fc5f713c35bba /core/command/status.php | |
parent | ce2c8533d9819e1ec9272bcdc06dcf4fa6b0678c (diff) | |
download | nextcloud-server-2c396a708069bc4080a8c5273a69dbdfdaf0170e.tar.gz nextcloud-server-2c396a708069bc4080a8c5273a69dbdfdaf0170e.zip |
Remove the app version from disabled app list
Diffstat (limited to 'core/command/status.php')
-rw-r--r-- | core/command/status.php | 2 |
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(), |