Make DB_COLLATE blank by default so that MySQL will choose the default collation for the charset. #3517

git-svn-id: http://svn.automattic.com/wordpress/trunk@4867 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan 2007-02-05 21:37:47 +00:00
parent 1d054e4894
commit 09d45db3f7
1 changed files with 1 additions and 1 deletions

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!