summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorLukas Reschke <lukas@statuscode.ch>2016-10-19 22:09:14 +0200
committerGitHub <noreply@github.com>2016-10-19 22:09:14 +0200
commit73f4ae94dd7b0798278f64fec9feaad5d0badba3 (patch)
treee7c575f576abceaeb0a44a991bbdde6444f8fa5d /core
parent58d53eb94c2ec12782f8cf65d0245fd6391d43bf (diff)
parent303e0737244eebd055d74e2f6d75747a5cdb26da (diff)
downloadnextcloud-server-73f4ae94dd7b0798278f64fec9feaad5d0badba3.tar.gz
nextcloud-server-73f4ae94dd7b0798278f64fec9feaad5d0badba3.zip
Merge pull request #1773 from nextcloud/testing-characters-in-db
MySQL 4byte support
Diffstat (limited to 'core')
-rw-r--r--core/register_command.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/register_command.php b/core/register_command.php
index a6da3cbd899..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()));
+ $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()));