From be3d17b9c22dca9cb693b291b347ccd8554407a3 Mon Sep 17 00:00:00 2001 From: Ryan Cramer Date: Thu, 9 Jan 2025 10:20:07 -0500 Subject: [PATCH] Fix issue processwire/processwire-issues#2022 --- install.php | 1 + 1 file changed, 1 insertion(+) diff --git a/install.php b/install.php index 472267be..f384cfa5 100644 --- a/install.php +++ b/install.php @@ -1144,6 +1144,7 @@ class Installer { $replace['ENGINE=MyISAM'] = "ENGINE=$options[dbEngine]"; $replace['CHARSET=utf8mb4;'] = "CHARSET=$options[dbCharset];"; $replace['CHARSET=utf8;'] = "CHARSET=$options[dbCharset];"; + $replace['CHARSET=utf8 COLLATE='] = "CHARSET=$options[dbCharset] COLLATE="; if(strtolower($options['dbCharset']) === 'utf8mb4') { if(strtolower($options['dbEngine']) === 'innodb') {