- Patch #1280522 by dcmouyard: _filter_autop() (line break converter) does not recognize html5 block level elements.

8.0.x
Dries Buytaert 2011-10-13 20:29:37 -04:00
parent 2038635911
commit e20b547d63
1 changed files with 1 additions and 1 deletions

View File

@ -1591,7 +1591,7 @@ function _filter_htmlcorrector($text) {
*/
function _filter_autop($text) {
// All block level tags
$block = '(?:table|thead|tfoot|caption|colgroup|tbody|tr|td|th|div|dl|dd|dt|ul|ol|li|pre|select|form|blockquote|address|p|h[1-6]|hr)';
$block = '(?:table|thead|tfoot|caption|colgroup|tbody|tr|td|th|div|dl|dd|dt|ul|ol|li|pre|select|form|blockquote|address|p|h[1-6]|hr|article|aside|details|figcaption|figure|footer|header|hgroup|menu|nav|section|summary)';
// Split at opening and closing PRE, SCRIPT, STYLE, OBJECT, IFRAME tags
// and comments. We don't apply any processing to the contents of these tags