summaryrefslogtreecommitdiffstats
path: root/status.php
diff options
context:
space:
mode:
Diffstat (limited to 'status.php')
-rw-r--r--status.php6
1 files changed, 4 insertions, 2 deletions
diff --git a/status.php b/status.php
index db5813814d0..f7bdfe1fd51 100644
--- a/status.php
+++ b/status.php
@@ -25,8 +25,10 @@ try {
require_once 'lib/base.php';
- $installed = OC_Config::getValue('installed') == 1;
- $maintenance = OC_Config::getValue('maintenance', false);
+ $systemConfig = \OC::$server->getSystemConfig();
+
+ $installed = $systemConfig->getValue('installed') == 1;
+ $maintenance = $systemConfig->getValue('maintenance', false);
$values=array(
'installed'=>$installed,
'maintenance' => $maintenance,