From ba365b25ce20f0bd86dff89bfcf646e4e5da5be5 Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Fri, 1 Jun 2007 05:49:49 +0000 Subject: [PATCH] r1549: Change the collation of the database to be 'utf8_general_ci' before we begin creating tables --- install/install.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/install/install.php b/install/install.php index 5a9ff4a..17d9fb7 100644 --- a/install/install.php +++ b/install/install.php @@ -22,6 +22,9 @@ define('STOP_MARK', 8); define('ACTIVE_SITE', 'install.php'); +// the collation used for installation +$COLLATION = 'utf8_general_ci'; + require_once('./global.php'); page_start(); @@ -121,6 +124,9 @@ if ($bugsys->in['mark'] == 2) query("ALTER DATABASE $database COLLATE $COLLATION"); + require_once('./install/schema.php'); foreach ($schema AS $table => $query) -- 2.22.5