Issue #3067116: text_summary() returns malformed (not normalized) HTML for basic_html and other formats that use filter_html instead of filter_htmlcorrector
1 open thread
Merge request reports
Activity
152 152 } 153 153 } 154 154 155 // If the htmlcorrector filter is present, apply it to the generated summary. 156 if (isset($format) && $filters->has('filter_htmlcorrector') && $filters->get('filter_htmlcorrector')->status) { 157 $summary = Html::normalize($summary); 155 // If filter_html or filter_htmlcorrector is enabled, normalize the output. 156 if (isset($format)) { 157 $filter_enabled = function ($filter) use ($filters) { changed this line in version 2 of the diff
added 1 commit
added 16 commits
-
aa426724...1926ec30 - 14 commits from branch
project:9.3.x
- 78d4e45e - 3067116:text_summary returns malformed.
- c78193d3 - Issue #3067116: Implement phenaproxima's typehint suggestions.
-
aa426724...1926ec30 - 14 commits from branch
Please register or sign in to reply