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
This commit is contained in:
Ryan Boren 2007-02-05 21:37:47 +00:00
parent e015e21650
commit 1da158c353

View File

@ -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!