diff options
author | Robin Appelman <icewind@owncloud.com> | 2014-09-08 14:56:11 +0200 |
---|---|---|
committer | Robin Appelman <icewind@owncloud.com> | 2014-09-18 13:33:13 +0200 |
commit | 6fa3280c2a4033e99b867440ae49932390784c48 (patch) | |
tree | 3fa01d8021935e8b8013b375ce7d221344fcd102 /lib/base.php | |
parent | c89c6ed21de96be58793c0e63c39aa0897253450 (diff) | |
download | nextcloud-server-6fa3280c2a4033e99b867440ae49932390784c48.tar.gz nextcloud-server-6fa3280c2a4033e99b867440ae49932390784c48.zip |
Inject config into checkserver and cleanup tests
Diffstat (limited to 'lib/base.php')
-rw-r--r-- | lib/base.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/base.php b/lib/base.php index e21d0124b32..5870497834b 100644 --- a/lib/base.php +++ b/lib/base.php @@ -531,7 +531,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) { |