We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e8d0c8d commit 319a62eCopy full SHA for 319a62e
src/DB_Command.php
@@ -559,7 +559,7 @@ public function export( $args, $assoc_args ) {
559
* use `utf8mb4` as a `default-character-set` to ensure emojis are encoded correctly.
560
*/
561
if ( ! isset( $assoc_args['default-character-set'] ) &&
562
- defined( 'DB_CHARSET' ) && 'utf8' == constant( 'DB_CHARSET' ) ) {
+ defined( 'DB_CHARSET' ) && 'utf8' === constant( 'DB_CHARSET' ) ) {
563
$assoc_args['default-character-set'] = 'utf8mb4';
564
}
565
0 commit comments