Changeset 45954 for branches/4.7/src/wp-includes/post-template.php
- Timestamp:
- 09/04/2019 04:36:52 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/4.7/src/wp-includes/post-template.php
r39608 r45954 325 325 } 326 326 327 if ( $preview ) // Preview fix for JavaScript bug with foreign languages.328 $output = preg_replace_callback( '/\%u([0-9A-F]{4})/', '_convert_urlencoded_to_entities', $output );329 330 327 return $output; 331 }332 333 /**334 * Preview fix for JavaScript bug with foreign languages.335 *336 * @since 3.1.0337 * @access private338 *339 * @param array $match Match array from preg_replace_callback.340 * @return string341 */342 function _convert_urlencoded_to_entities( $match ) {343 return '&#' . base_convert( $match[1], 16, 10 ) . ';';344 328 } 345 329
Note: See TracChangeset
for help on using the changeset viewer.