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:
parent
1d054e4894
commit
09d45db3f7
|
@ -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!
|
||||
|
|
Loading…
Reference in New Issue