Changeset 59255 for trunk/src/wp-trackback.php
- Timestamp:
- 10/18/2024 03:54:07 PM (7 weeks ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-trackback.php
r55988 r59255 61 61 if ( $charset ) { 62 62 $charset = str_replace( array( ',', ' ' ), '', strtoupper( trim( $charset ) ) ); 63 } else { 63 64 // Validate the specified "sender" charset is available on the receiving site. 65 if ( function_exists( 'mb_list_encodings' ) && ! in_array( $charset, mb_list_encodings(), true ) ) { 66 $charset = ''; 67 } 68 } 69 70 if ( ! $charset ) { 64 71 $charset = 'ASCII, UTF-8, ISO-8859-1, JIS, EUC-JP, SJIS'; 65 72 }
Note: See TracChangeset
for help on using the changeset viewer.