Changeset 58897
- Timestamp:
- 08/14/2024 07:49:03 PM (13 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/html-api/class-wp-html-tag-processor.php
r58893 r58897 3668 3668 * @see https://html.spec.whatwg.org/#attributes-3 3669 3669 */ 3670 $escaped_new_value = in_array( $comparable_name, wp_kses_uri_attributes() ) ? esc_url( $value ) : esc_attr( $value );3670 $escaped_new_value = in_array( $comparable_name, wp_kses_uri_attributes(), true ) ? esc_url( $value ) : esc_attr( $value ); 3671 3671 3672 3672 // If the escaping functions wiped out the update, reject it and indicate it was rejected.
Note: See TracChangeset
for help on using the changeset viewer.