Changeset 47648 for branches/4.9/src/wp-includes/formatting.php
- Timestamp:
- 04/29/2020 04:15:39 PM (5 years ago)
- Location:
- branches/4.9
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/4.9
- Property svn:mergeinfo changed
/trunk merged: 47633-47635,47637-47638
- Property svn:mergeinfo changed
-
branches/4.9/src/wp-includes/formatting.php
r45994 r47648 1777 1777 $filename_raw = $filename; 1778 1778 $special_chars = array("?", "[", "]", "/", "\\", "=", "<", ">", ":", ";", ",", "'", "\"", "&", "$", "#", "*", "(", ")", "|", "~", "`", "!", "{", "}", "%", "+", chr(0)); 1779 1780 // Check for support for utf8 in the installed PCRE library once and store the result in a static. 1781 static $utf8_pcre = null; 1782 if ( ! isset( $utf8_pcre ) ) { 1783 // phpcs:ignore WordPress.PHP.NoSilencedErrors.Discouraged 1784 $utf8_pcre = @preg_match( '/^./u', 'a' ); 1785 } 1786 1787 if ( ! seems_utf8( $filename ) ) { 1788 $_ext = pathinfo( $filename, PATHINFO_EXTENSION ); 1789 $_name = pathinfo( $filename, PATHINFO_FILENAME ); 1790 $filename = sanitize_title_with_dashes( $_name ) . '.' . $_ext; 1791 } 1792 1793 if ( $utf8_pcre ) { 1794 $filename = preg_replace( "#\x{00a0}#siu", ' ', $filename ); 1795 } 1796 1779 1797 /** 1780 1798 * Filters the list of characters to remove from a filename. … … 1786 1804 */ 1787 1805 $special_chars = apply_filters( 'sanitize_file_name_chars', $special_chars, $filename_raw ); 1788 $filename = preg_replace( "#\x{00a0}#siu", ' ', $filename );1789 1806 $filename = str_replace( $special_chars, '', $filename ); 1790 1807 $filename = str_replace( array( '%20', '+' ), '-', $filename );
Note: See TracChangeset
for help on using the changeset viewer.