Changeset 11215 for trunk/wp-includes/formatting.php
- Timestamp:
- 05/06/2009 04:56:32 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/formatting.php
r11204 r11215 201 201 * @return string The encoded text with HTML entities. 202 202 */ 203 function wp_specialchars( $string, $quote_style = ENT_NOQUOTES, $charset = false, $double_encode = false ) 204 { 203 function wp_specialchars( $string, $quote_style = ENT_NOQUOTES, $charset = false, $double_encode = false ) { 205 204 $string = (string) $string; 206 205 … … 278 277 * @return string The decoded text without HTML entities. 279 278 */ 280 function wp_specialchars_decode( $string, $quote_style = ENT_NOQUOTES ) 281 { 279 function wp_specialchars_decode( $string, $quote_style = ENT_NOQUOTES ) { 282 280 $string = (string) $string; 283 281 … … 336 334 * @return string The checked text. 337 335 */ 338 function wp_check_invalid_utf8( $string, $strip = false ) 339 { 336 function wp_check_invalid_utf8( $string, $strip = false ) { 340 337 $string = (string) $string; 341 338
Note: See TracChangeset
for help on using the changeset viewer.