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/public/util.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/public/util.php')
-rw-r--r-- | lib/public/util.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/public/util.php b/lib/public/util.php index 244c11ba2cc..d3f07b5c459 100644 --- a/lib/public/util.php +++ b/lib/public/util.php @@ -545,6 +545,6 @@ class Util { * @return bool true if upgrade is needed, false otherwise */ public static function needUpgrade() { - return \OC_Util::needUpgrade(); + return \OC_Util::needUpgrade(\OC::$server->getConfig()); } } |