Changeset 36578 for trunk/src/wp-includes/formatting.php
- Timestamp:
- 02/18/2016 08:30:54 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/formatting.php
r36488 r36578 375 375 function _wptexturize_pushpop_element( $text, &$stack, $disabled_elements ) { 376 376 // Is it an opening tag or closing tag? 377 if ( '/' !== $text[1] ) {377 if ( isset( $text[1] ) && '/' !== $text[1] ) { 378 378 $opening_tag = true; 379 379 $name_offset = 1;
Note: See TracChangeset
for help on using the changeset viewer.