summaryrefslogtreecommitdiffstats
path: root/core/command
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2015-10-30 09:51:16 +0100
committerMorris Jobke <hey@morrisjobke.de>2015-10-30 09:51:16 +0100
commitf46d531a4f4d97766ee5dcb5ea8345cfc941d197 (patch)
treed62d16f6f2c7405708b765fcf48b36a86a152076 /core/command
parent0c1a8c953aba8968301f0871a607d5abcf7b3003 (diff)
downloadnextcloud-server-f46d531a4f4d97766ee5dcb5ea8345cfc941d197.tar.gz
nextcloud-server-f46d531a4f4d97766ee5dcb5ea8345cfc941d197.zip
Replace some OC_Config calls with ILogger methods
Diffstat (limited to 'core/command')
-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 a65e985a9ec..2eb58525d3e 100644
--- a/core/command/status.php
+++ b/core/command/status.php
@@ -38,7 +38,7 @@ class Status extends Base {
protected function execute(InputInterface $input, OutputInterface $output) {
$values = array(
- 'installed' => (bool) \OC_Config::getValue('installed'),
+ 'installed' => (bool) \OC::$server->getConfig()->getSystemValue('installed', false),
'version' => implode('.', \OC_Util::getVersion()),
'versionstring' => \OC_Util::getVersionString(),
'edition' => \OC_Util::getEditionString(),