Changeset 16431 for trunk/wp-includes/formatting.php
- Timestamp:
- 11/17/2010 05:12:01 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/formatting.php
r16409 r16431 2354 2354 2355 2355 /** 2356 * Escaping for textarea values. 2357 * 2358 * @since 3.1 2359 * 2360 * @param string $text 2361 * @return string 2362 */ 2363 function esc_textarea( $text ) { 2364 $safe_text = htmlspecialchars( $text ); 2365 return apply_filters( 'esc_textarea', $safe_text, $text ); 2366 } 2367 2368 /** 2356 2369 * Escape a HTML tag name. 2357 2370 *
Note: See TracChangeset
for help on using the changeset viewer.