diff options
author | Lukas Reschke <lukas@owncloud.com> | 2015-03-11 16:14:54 +0100 |
---|---|---|
committer | Lukas Reschke <lukas@owncloud.com> | 2015-03-11 16:14:54 +0100 |
commit | 73dc02d42c385cc451eb65d0aaf6ec06eaceb6a6 (patch) | |
tree | bb2c296d8f855cf8d5d569848401b30aad7fb871 /core/command | |
parent | caa672ceeb7a972d892fff231237f7586e9deafb (diff) | |
parent | 96b223676d6f3364530389d49d3518ac6748714d (diff) | |
download | nextcloud-server-73dc02d42c385cc451eb65d0aaf6ec06eaceb6a6.tar.gz nextcloud-server-73dc02d42c385cc451eb65d0aaf6ec06eaceb6a6.zip |
Merge pull request #14798 from owncloud/enable-oci-autotest-master
Setting oci as supported database
Diffstat (limited to 'core/command')
-rw-r--r-- | core/command/maintenance/install.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/command/maintenance/install.php b/core/command/maintenance/install.php index e92a546daac..eecdb08e620 100644 --- a/core/command/maintenance/install.php +++ b/core/command/maintenance/install.php @@ -41,7 +41,7 @@ class Install extends Command { // validate the environment $setupHelper = new Setup($this->config, \OC::$server->getIniWrapper(), \OC::$server->getL10N('lib'), new \OC_Defaults()); - $sysInfo = $setupHelper->getSystemInfo(); + $sysInfo = $setupHelper->getSystemInfo(true); $errors = $sysInfo['errors']; if (count($errors) > 0) { $this->printErrors($output, $errors); |