diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2016-02-09 17:25:12 +0100 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2016-10-19 00:15:01 +0200 |
commit | a7245ea08284568f9a449a11b726048dcec06d4a (patch) | |
tree | 59bef83ed9e579f93d0aaf342663b701952177a4 /core/register_command.php | |
parent | 296a3274cf9fccc5fea1f067bb5cb9cc71450734 (diff) | |
download | nextcloud-server-a7245ea08284568f9a449a11b726048dcec06d4a.tar.gz nextcloud-server-a7245ea08284568f9a449a11b726048dcec06d4a.zip |
Fixing ctor call
Diffstat (limited to 'core/register_command.php')
-rw-r--r-- | core/register_command.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/register_command.php b/core/register_command.php index fa85aea8956..89b0cf31ef4 100644 --- a/core/register_command.php +++ b/core/register_command.php @@ -83,7 +83,7 @@ if (\OC::$server->getConfig()->getSystemValue('installed', false)) { $application->add(new OC\Core\Command\Config\System\SetConfig(\OC::$server->getSystemConfig())); $application->add(new OC\Core\Command\Db\GenerateChangeScript()); - $application->add(new OC\Core\Command\Db\ConvertType(\OC::$server->getConfig(), new \OC\DB\ConnectionFactory(\OC::$server->getSystemConfig()))); + $application->add(new OC\Core\Command\Db\ConvertType(\OC::$server->getConfig(), new \OC\DB\ConnectionFactory(\OC::$server->getConfig()))); $application->add(new OC\Core\Command\Encryption\Disable(\OC::$server->getConfig())); $application->add(new OC\Core\Command\Encryption\Enable(\OC::$server->getConfig(), \OC::$server->getEncryptionManager())); |