Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix install on mb4 enabled mariadb/mysql
Signed-off-by: Arthur Schiwon <[email protected]>
  • Loading branch information
blizzz committed Jun 1, 2017
commit 0d893f09c4711aef666a40443f901b1c470435a6
2 changes: 1 addition & 1 deletion lib/private/Setup/MySQL.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public function setupDatabase($username) {
$tools = new MySqlTools();
if ($tools->supports4ByteCharset($connection)) {
$this->config->setValue('mysql.utf8mb4', true);
$connection = $this->connect();
$connection = $this->connect(['dbname' => null]);
}

$this->createSpecificUser($username, $connection);
Expand Down