From ca570bd16b9decb981858a2c7c2b1f6756889f03 Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Tue, 15 May 2007 06:38:05 +0000 Subject: [PATCH] creating new db's in MySQL allways as utf-8 --- setup/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/index.php b/setup/index.php index b71e3b6fa9..745bebe751 100644 --- a/setup/index.php +++ b/setup/index.php @@ -298,7 +298,7 @@ switch ($GLOBALS['egw_info']['setup']['currentver']['phpgwapi']) { case 'dbcreate': - $GLOBALS['egw_setup']->db->create_database($_POST['db_root'], $_POST['db_pass'], $_POST['system_charset']); + $GLOBALS['egw_setup']->db->create_database($_POST['db_root'], $_POST['db_pass'],'utf8'); // create all new db's with utf8 break; case 'drop': $setup_info = $GLOBALS['egw_setup']->detection->get_versions($setup_info);