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:
authorLukas Reschke <lukas@owncloud.com>2014-10-02 12:38:15 +0400
committerLukas Reschke <lukas@owncloud.com>2014-10-02 12:38:15 +0400
commit1f5f278501e7c8ef2c75481104035030448aa52b (patch)
tree8b4d6e35ef8bbd8f74e607b0d6bd7fca2f1cb6e6 /lib/public
parent424cc31fd6fad12e1266918bc78efed4a182cbc2 (diff)
parentf788dffce8903a633c95b05b83c7a4ba9e8c7c16 (diff)
Merge pull request #11299 from owncloud/barkport-10934
[stable7] Don't complain about non-writable datadirs before we're installed
Diffstat (limited to 'lib/public')
-rw-r--r--lib/public/util.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/public/util.php b/lib/public/util.php
index 2a6e977f085..bcbf7caa65a 100644
--- a/lib/public/util.php
+++ b/lib/public/util.php
@@ -532,6 +532,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());
}
}