Changeset 36430 for branches/4.4/src/wp-includes/kses.php
- Timestamp:
- 02/01/2016 02:57:53 PM (9 years ago)
- Location:
- branches/4.4
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/4.4
-
branches/4.4/src/wp-includes/kses.php
r35141 r36430 1582 1582 1583 1583 /** 1584 * Navigates through an array, object, or scalar, and sanitizes content for 1585 * allowed HTML tags for post content. 1586 * 1587 * @since 4.4.2 1588 * 1589 * @param mixed $value The array or string to filter. 1590 * @return mixed $value The filtered content. 1591 */ 1592 function wp_kses_post_deep( $data ) { 1593 return map_deep( $data, 'wp_kses_post' ); 1594 } 1595 1596 /** 1584 1597 * Strips all of the HTML in the content. 1585 1598 *
Note: See TracChangeset
for help on using the changeset viewer.