diff options
author | Morris Jobke <hey@morrisjobke.de> | 2017-03-21 16:08:05 -0600 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2017-03-21 16:42:42 -0600 |
commit | 3329f44a76f960f7b73beb6bb4d717b10bfca28b (patch) | |
tree | bf915423161beb188c40928b0bbe25d82c57ed5d /core | |
parent | 1aef2f417b2004ee23c3071917e699e66b5353dd (diff) | |
download | nextcloud-server-3329f44a76f960f7b73beb6bb4d717b10bfca28b.tar.gz nextcloud-server-3329f44a76f960f7b73beb6bb4d717b10bfca28b.zip |
Address comments
* fix URL to documentation
* improve logic of UTF8mb4 check
* fix connection parameter creation - it's done already in ConnectionFactory::createConnectionParams
* remove unused attributes of MDB2SchemaReader
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
Diffstat (limited to 'core')
-rw-r--r-- | core/Command/Db/ConvertMysqlToMB4.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Command/Db/ConvertMysqlToMB4.php b/core/Command/Db/ConvertMysqlToMB4.php index d456db13b11..5302b3cf5fb 100644 --- a/core/Command/Db/ConvertMysqlToMB4.php +++ b/core/Command/Db/ConvertMysqlToMB4.php @@ -72,7 +72,7 @@ class ConvertMysqlToMB4 extends Command { } if (!$this->connection->supports4ByteText()) { - $url = $this->urlGenerator->linkToDocs('admin-db-conversion'); + $url = $this->urlGenerator->linkToDocs('admin-mysql-utf8mb4'); $output->writeln("The database is not properly setup to use the charset utf8mb4."); $output->writeln("Also check that the setting 'mysql.utf8mb4' is set to true in the config.php."); $output->writeln("For more information please read the documentation at $url"); |