Changeset 11212 for trunk/wp-includes/kses.php
- Timestamp:
- 05/05/2009 11:32:16 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/kses.php
r11204 r11212 416 416 * @access private 417 417 * @since 1.0.0 418 * @uses wp_kses_ esc_attr()418 * @uses wp_kses_attr() 419 419 * 420 420 * @param string $string Content to filter … … 460 460 # No attributes are allowed for closing elements 461 461 462 return wp_kses_ esc_attr("$slash$elem", $attrlist, $allowed_html, $allowed_protocols);462 return wp_kses_attr("$slash$elem", $attrlist, $allowed_html, $allowed_protocols); 463 463 } 464 464 … … 480 480 * @return string Sanitized HTML element 481 481 */ 482 function wp_kses_ esc_attr($element, $attr, $allowed_html, $allowed_protocols) {482 function wp_kses_attr($element, $attr, $allowed_html, $allowed_protocols) { 483 483 # Is there a closing XHTML slash at the end of the attributes? 484 484
Note: See TracChangeset
for help on using the changeset viewer.