From 7c0951244a176e0b42d2d66a4288d74460821a8c Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Tue, 6 Sep 2016 14:11:30 +0200 Subject: Deprecate getEditionString() --- core/Command/Status.php | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'core/Command') 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); -- cgit v1.2.3