Changeset 55990 for trunk/src/wp-includes/shortcodes.php
- Timestamp:
- 06/22/2023 02:55:47 PM (6 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/shortcodes.php
r55988 r55990 424 424 } 425 425 426 if ( $ignore_html || '<!--' === substr( $element, 0, 4 ) || '<![CDATA[' === substr( $element, 0, 9) ) {426 if ( $ignore_html || str_starts_with( $element, '<!--' ) || str_starts_with( $element, '<![CDATA[' ) ) { 427 427 // Encode all '[' and ']' chars. 428 428 $element = strtr( $element, $trans );
Note: See TracChangeset
for help on using the changeset viewer.