Changeset 61110
- Timestamp:
- 11/01/2025 03:32:57 AM (6 weeks ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/post.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/post.php
r61078 r61110 4843 4843 $charset = $wpdb->get_col_charset( $wpdb->posts, $emoji_field ); 4844 4844 4845 if ( 'utf8' === $charset ) { 4845 // The 'utf8' character set is a deprecated alias of 'utf8mb3'. See <https://dev.mysql.com/doc/refman/8.4/en/charset-unicode-utf8.html>. 4846 if ( 'utf8' === $charset || 'utf8mb3' === $charset ) { 4846 4847 $data[ $emoji_field ] = wp_encode_emoji( $data[ $emoji_field ] ); 4847 4848 }
Note: See TracChangeset
for help on using the changeset viewer.