Skip to content
Snippets Groups Projects

D10 regression when handling faulty HTML fixes.

Merge request reports

Members who can merge are allowed to add commits.
Approval is optional
Code Quality is loading
Test summary results are being parsed
Ready to merge by members who can write to the target branch.
  • The source branch is 7 commits behind the target branch.
  • 1 commit will be added to 2.0.x.
  • Source branch will not be deleted.

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
72 72
73 73 // Build the fragment (header) node.
74 74 $build = [];
75 $header_level = (int) $dom_node->tagName[1];
75 if($dom_node && $dom_node->tagName[1]) {
  • 72 72
    73 73 // Build the fragment (header) node.
    74 74 $build = [];
    75 $header_level = (int) $dom_node->tagName[1];
    75 if($dom_node && $dom_node->tagName[1]) {
    76 if($dom_node && $dom_node->tagName[1]) {
  • 208 208
    209 209 $index_keys = $default_keys;
    210 210
    211 $dom = Html::load($this->source);
    211 $tidy = new \tidy();
    Please register or sign in to reply
    Loading