Skip to content
Snippets Groups Projects

Issue #3067116: text_summary() returns malformed (not normalized) HTML for basic_html and other formats that use filter_html instead of filter_htmlcorrector

Issue #3067116: text_summary() returns malformed (not normalized) HTML for basic_html and other formats that use filter_html instead of filter_htmlcorrector

Merge request reports

Loading
Loading

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
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) {
  • Derek Wright added 1 commit

    added 1 commit

    Compare with previous version

  • Lee Rowlands added 16 commits

    added 16 commits

    Compare with previous version

  • merged

  • Please register or sign in to reply
    Loading