Changeset 16313 for trunk/wp-includes/post-template.php
- Timestamp:
- 11/11/2010 10:50:36 PM (15 years ago)
- File:
-
- 1 edited
-
trunk/wp-includes/post-template.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/post-template.php
r16283 r16313 224 224 } 225 225 if ( $preview ) // preview fix for javascript bug with foreign languages 226 $output = preg_replace_callback('/\%u([0-9A-F]{4})/', '_ _convert_urlencoded_to_entities', $output);226 $output = preg_replace_callback('/\%u([0-9A-F]{4})/', '_convert_urlencoded_to_entities', $output); 227 227 228 228 return $output; … … 237 237 * @returns string 238 238 */ 239 function _ _convert_urlencoded_to_entities($match) {240 return '&#' . base_convert( $match[1], 16, 10) . ';';239 function _convert_urlencoded_to_entities( $match ) { 240 return '&#' . base_convert( $match[1], 16, 10 ) . ';'; 241 241 } 242 242
Note: See TracChangeset
for help on using the changeset viewer.