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:
authorRobin Appelman <icewind@owncloud.com>2014-09-08 16:56:11 +0400
committerThomas Müller <thomas.mueller@tmit.eu>2014-09-30 12:24:52 +0400
commit2376d6911534127431cac5ce7600d2327804440d (patch)
treeb41aa674471c7d277493bf07d58b3ea7c3d22919 /lib/base.php
parent7eb0d6866c6ed48364c238708530fa72faa7190d (diff)
Inject config into checkserver and cleanup tests
Conflicts: lib/private/util.php
Diffstat (limited to 'lib/base.php')
-rw-r--r--lib/base.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/base.php b/lib/base.php
index 3ce5a21a8af..7335be037b8 100644
--- a/lib/base.php
+++ b/lib/base.php
@@ -516,7 +516,7 @@ class OC {
self::checkSSL();
OC_Response::addSecurityHeaders();
- $errors = OC_Util::checkServer();
+ $errors = OC_Util::checkServer(\OC::$server->getConfig());
if (count($errors) > 0) {
if (self::$CLI) {
foreach ($errors as $error) {