Changeset 32800 for trunk/src/wp-includes/formatting.php
- Timestamp:
- 06/16/2015 08:00:15 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/formatting.php
r32797 r32800 1583 1583 $tag = strtolower(substr($regex[1],1)); 1584 1584 // if too many closing tags 1585 if ( $stacksize <= 0 ) {1585 if ( $stacksize <= 0 ) { 1586 1586 $tag = ''; 1587 1587 // or close to be safe $tag = '/' . $tag; … … 1638 1638 // Attributes 1639 1639 $attributes = $regex[2]; 1640 if ( ! empty( $attributes ) && $attributes[0] != '>' )1640 if ( ! empty( $attributes ) && $attributes[0] != '>' ) 1641 1641 $attributes = ' ' . $attributes; 1642 1642 … … 2743 2743 */ 2744 2744 $filtered = apply_filters( 'pre_ent2ncr', null, $text ); 2745 if ( null !== $filtered )2745 if ( null !== $filtered ) 2746 2746 return $filtered; 2747 2747
Note: See TracChangeset
for help on using the changeset viewer.