Changeset 53144 for trunk/src/wp-includes/formatting.php
- Timestamp:
- 04/11/2022 07:58:04 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/formatting.php
r53053 r53144 4640 4640 $regex, 4641 4641 static function( $matches ) { 4642 if ( ! $matches[0]) {4642 if ( ! isset( $matches[0] ) ) { 4643 4643 return ''; 4644 4644 } 4645 4645 4646 if ( ! empty( $matches['non_cdata'] ) ) {4646 if ( isset( $matches['non_cdata'] ) ) { 4647 4647 // escape HTML entities in the non-CDATA Section. 4648 4648 return _wp_specialchars( $matches['non_cdata'], ENT_XML1 );
Note: See TracChangeset
for help on using the changeset viewer.