Changeset 45945
- Timestamp:
- 09/04/2019 04:31:20 PM (6 years ago)
- Location:
- branches/5.0
- Files:
-
- 5 deleted
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/5.0/src/wp-includes/post-template.php
r43827 r45945 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.