Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJörn Friedrich Dreyer <jfd@butonic.de>2016-08-17 12:59:53 +0300
committerArthur Schiwon <blizzz@arthur-schiwon.de>2016-08-29 16:22:02 +0300
commitd5d5b202d8efb36e09a78685be4ce70359b2eeb6 (patch)
treedc354f83c6c6e125e0c21e657d4e9e6d852bee6d /status.php
parent3e4038289f467ae548857549ee8f55df5d95e61b (diff)
use correct OCP\Defaults
Diffstat (limited to 'status.php')
-rw-r--r--status.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/status.php b/status.php
index 1da399051a6..5b4b950139b 100644
--- a/status.php
+++ b/status.php
@@ -37,7 +37,7 @@ try {
$maintenance = (bool) $systemConfig->getValue('maintenance', false);
# see core/lib/private/legacy/defaults.php and core/themes/example/defaults.php
# for description and defaults
- $defaults = new \OC_Defaults();
+ $defaults = new \OCP\Defaults();
$values=array(
'installed'=>$installed,
'maintenance' => $maintenance,