Changeset 47651 for branches/4.6/src/wp-includes/formatting.php
- Timestamp:
- 04/29/2020 04:24:40 PM (5 years ago)
- Location:
- branches/4.6
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/4.6
- Property svn:mergeinfo changed
/trunk merged: 47634-47635,47637-47638
- Property svn:mergeinfo changed
-
branches/4.6/src/wp-includes/formatting.php
r45998 r47651 1745 1745 $filename_raw = $filename; 1746 1746 $special_chars = array("?", "[", "]", "/", "\\", "=", "<", ">", ":", ";", ",", "'", "\"", "&", "$", "#", "*", "(", ")", "|", "~", "`", "!", "{", "}", "%", "+", chr(0)); 1747 1748 // Check for support for utf8 in the installed PCRE library once and store the result in a static. 1749 static $utf8_pcre = null; 1750 if ( ! isset( $utf8_pcre ) ) { 1751 // phpcs:ignore WordPress.PHP.NoSilencedErrors.Discouraged 1752 $utf8_pcre = @preg_match( '/^./u', 'a' ); 1753 } 1754 1755 if ( ! seems_utf8( $filename ) ) { 1756 $_ext = pathinfo( $filename, PATHINFO_EXTENSION ); 1757 $_name = pathinfo( $filename, PATHINFO_FILENAME ); 1758 $filename = sanitize_title_with_dashes( $_name ) . '.' . $_ext; 1759 } 1760 1761 if ( $utf8_pcre ) { 1762 $filename = preg_replace( "#\x{00a0}#siu", ' ', $filename ); 1763 } 1764 1747 1765 /** 1748 1766 * Filters the list of characters to remove from a filename. … … 1754 1772 */ 1755 1773 $special_chars = apply_filters( 'sanitize_file_name_chars', $special_chars, $filename_raw ); 1756 $filename = preg_replace( "#\x{00a0}#siu", ' ', $filename );1757 1774 $filename = str_replace( $special_chars, '', $filename ); 1758 1775 $filename = str_replace( array( '%20', '+' ), '-', $filename );
Note: See TracChangeset
for help on using the changeset viewer.