Ticket #20401: 20401.diff
File 20401.diff, 721 bytes (added by , 13 years ago) |
---|
-
wp-includes/formatting.php
1094 1094 $tagqueue = ''; 1095 1095 $newtext = ''; 1096 1096 $single_tags = array( 'br', 'hr', 'img', 'input' ); // Known single-entity/self-closing tags 1097 $nestable_tags = array( 'blockquote', 'div', ' span', 'q' ); // Tags that can be immediately nested within themselves1097 $nestable_tags = array( 'blockquote', 'div', 'object', 'q', 'span' ); // Tags that can be immediately nested within themselves 1098 1098 1099 1099 // WP bug fix for comments - in case you REALLY meant to type '< !--' 1100 1100 $text = str_replace('< !--', '< !--', $text);