Changeset 31947
- Timestamp:
- 04/01/2015 02:21:15 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/wp-db.php
r31939 r31947 2220 2220 if ( ! empty( $column->Collation ) ) { 2221 2221 list( $charset ) = explode( '_', $column->Collation ); 2222 2223 // If the current connection can't support utf8mb4 characters, let's only send 3-byte utf8 characters. 2224 if ( 'utf8mb4' === $charset && ! $this->has_cap( 'utf8mb4' ) ) { 2225 $charset = 'utf8'; 2226 } 2227 2222 2228 $charsets[ strtolower( $charset ) ] = true; 2223 2229 }
Note: See TracChangeset
for help on using the changeset viewer.