Changeset 47660 for branches/3.9/src/wp-includes/formatting.php
- Timestamp:
- 04/29/2020 04:55:29 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3.9/src/wp-includes/formatting.php
r37822 r47660 1036 1036 $filename_raw = $filename; 1037 1037 $special_chars = array("?", "[", "]", "/", "\\", "=", "<", ">", ":", ";", ",", "'", "\"", "&", "$", "#", "*", "(", ")", "|", "~", "`", "!", "{", "}", chr(0)); 1038 1039 // Check for support for utf8 in the installed PCRE library once and store the result in a static. 1040 static $utf8_pcre = null; 1041 if ( ! isset( $utf8_pcre ) ) { 1042 // phpcs:ignore WordPress.PHP.NoSilencedErrors.Discouraged 1043 $utf8_pcre = @preg_match( '/^./u', 'a' ); 1044 } 1045 1046 if ( ! seems_utf8( $filename ) ) { 1047 $_ext = pathinfo( $filename, PATHINFO_EXTENSION ); 1048 $_name = pathinfo( $filename, PATHINFO_FILENAME ); 1049 $filename = sanitize_title_with_dashes( $_name ) . '.' . $_ext; 1050 } 1051 1052 if ( $utf8_pcre ) { 1053 $filename = preg_replace( "#\x{00a0}#siu", ' ', $filename ); 1054 } 1055 1038 1056 /** 1039 1057 * Filter the list of characters to remove from a filename. … … 1045 1063 */ 1046 1064 $special_chars = apply_filters( 'sanitize_file_name_chars', $special_chars, $filename_raw ); 1047 $filename = preg_replace( "#\x{00a0}#siu", ' ', $filename );1048 1065 $filename = str_replace($special_chars, '', $filename); 1049 1066 $filename = preg_replace('/[\s-]+/', '-', $filename);
Note: See TracChangeset
for help on using the changeset viewer.