From 1da158c3534ba6448b375196ac1039b1479954b0 Mon Sep 17 00:00:00 2001 From: Ryan Boren Date: Mon, 5 Feb 2007 21:37:47 +0000 Subject: [PATCH] Make DB_COLLATE blank by default so that MySQL will choose the default collation for the charset. #3517 git-svn-id: https://develop.svn.wordpress.org/trunk@4867 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-config-sample.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-config-sample.php b/wp-config-sample.php index 7ae45bbbad..42dc0648c4 100644 --- a/wp-config-sample.php +++ b/wp-config-sample.php @@ -5,7 +5,7 @@ define('DB_USER', 'username'); // Your MySQL username define('DB_PASSWORD', 'password'); // ...and password define('DB_HOST', 'localhost'); // 99% chance you won't need to change this value define('DB_CHARSET', 'utf8'); -define('DB_COLLATE', 'utf8_general_ci'); +define('DB_COLLATE', ''); // You can have multiple installations in one database if you give each a unique prefix $table_prefix = 'wp_'; // Only numbers, letters, and underscores please!