Browse code

Fix missing charset and collation in fanfiction_modules

Clarissa Walker authored on 2026/07/18 05:39:22
Showing 1 changed files
... ...
@@ -682,7 +682,7 @@ CREATE TABLE IF NOT EXISTS `" . $tableprefix . "fanfiction_modules` (
682 682
   `version` varchar(10) NOT NULL default '1.0',
683 683
   PRIMARY KEY  (`id`),
684 684
   KEY `name_version` (`name`,`version`)
685
-)");
685
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin;");
686 686
 				$output .= "<tr><td>" . $tableprefix . "fanfiction_modules</td><td align='center'>" . ($modules ? "<img src=\"../images/check.gif\">" : "<img src=\"../images/X.gif\">") . "</td></tr>";
687 687
 				$news = dbquery("CREATE TABLE IF NOT EXISTS `" . $tableprefix . "fanfiction_news` (
688 688
   `nid` int(11) NOT NULL auto_increment,