Changeset 16438 for trunk/wp-includes/formatting.php
- Timestamp:
- 11/17/2010 06:47:34 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/formatting.php
r16431 r16438 224 224 /** 225 225 * Newline preservation help function for wpautop 226 * 226 * 227 227 * @since 3.1.0 228 228 * @access private … … 738 738 * 739 739 * Removes tags, octets, entities, and if strict is enabled, will only keep 740 * alphanumeric, _, space, ., -, @. After sanitizing, it passes the username, 740 * alphanumeric, _, space, ., -, @. After sanitizing, it passes the username, 741 741 * raw username (the username in the parameter), and the value of $strict as 742 742 * parameters for the 'sanitize_user' filter. … … 1575 1575 /** 1576 1576 * Helper function to convert hex encoded chars to ascii 1577 * 1577 * 1578 1578 * @since 3.1.0 1579 1579 * @access private 1580 1580 * @param $match the preg_replace_callback matches array 1581 1581 */ 1582 function _wp_iso_convert( $match ) { 1583 return chr( hexdec( strtolower( $match[1] ) ) ); 1584 } 1582 function _wp_iso_convert( $match ) { 1583 return chr( hexdec( strtolower( $match[1] ) ) ); 1584 } 1585 1585 1586 1586 /**
Note: See TracChangeset
for help on using the changeset viewer.