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 79cb200 commit 2f3ff2fCopy full SHA for 2f3ff2f
src/DB_Command.php
@@ -554,10 +554,9 @@ public function export( $args, $assoc_args ) {
554
555
$support_column_statistics = exec( $mysqldump_binary . ' --help | grep "column-statistics"' );
556
557
- /**
558
- * Issue #144
+ /*
559
* In case that `--default-character-set` is not given and `DB_CHARSET` is `utf8`,
560
- * use `utf8mb4` as a default-character-set to show emoji.
+ * use `utf8mb4` as a `default-character-set` to ensure emojis are encoded correctly.
561
*/
562
if ( !isset( $assoc_args['default-character-set'] ) &&
563
defined( 'DB_CHARSET' ) && 'utf8' == constant( 'DB_CHARSET' ) ) {
0 commit comments