Skip to content
Snippets Groups Projects
Unverified Commit 2c4ace9d authored by Lauri Timmanee's avatar Lauri Timmanee
Browse files

Issue #3100066 by oknate, Wim Leers, alisonjo315: "Convert line breaks into...

Issue #3100066 by oknate, Wim Leers, alisonjo315: "Convert line breaks into HTML" filter should exclude <drupal-media> tag
parent 265e7e9e
No related branches found
No related tags found
6 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!1012Issue #3226887: Hreflang on non-canonical content pages,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10,!596Issue #3046532: deleting an entity reference field, used in a contextual view, makes the whole site unrecoverable,!496Issue #2463967: Use .user.ini file for PHP settings,!144Issue #2666286: Clean up menu_ui to conform to Drupal coding standards
...@@ -701,7 +701,7 @@ function _filter_autop($text) { ...@@ -701,7 +701,7 @@ function _filter_autop($text) {
// to avoid messing up code. We look for matched pairs and allow basic // to avoid messing up code. We look for matched pairs and allow basic
// nesting. For example: // nesting. For example:
// "processed <pre> ignored <script> ignored </script> ignored </pre> processed" // "processed <pre> ignored <script> ignored </script> ignored </pre> processed"
$chunks = preg_split('@(<!--.*?-->|</?(?:pre|script|style|object|iframe|!--)[^>]*>)@i', $text, -1, PREG_SPLIT_DELIM_CAPTURE); $chunks = preg_split('@(<!--.*?-->|</?(?:pre|script|style|object|iframe|drupal-media|!--)[^>]*>)@i', $text, -1, PREG_SPLIT_DELIM_CAPTURE);
// Note: PHP ensures the array consists of alternating delimiters and literals // Note: PHP ensures the array consists of alternating delimiters and literals
// and begins and ends with a literal (inserting NULL as required). // and begins and ends with a literal (inserting NULL as required).
$ignore = FALSE; $ignore = FALSE;
......
...@@ -376,6 +376,10 @@ public function testLineBreakFilter() { ...@@ -376,6 +376,10 @@ public function testLineBreakFilter() {
"<iframe>aaa</iframe>\n\n" => [ "<iframe>aaa</iframe>\n\n" => [
"<p><iframe>aaa</iframe></p>" => FALSE, "<p><iframe>aaa</iframe></p>" => FALSE,
], ],
// Bug 3097338, paragraphs were appearing around drupalmedia tags.
'<drupal-media data-caption=" " data-entity-type="media" data-entity-uuid="dbb16f97-cd11-4357-acde-cd09e19e312b"></drupal-media>' => [
'<p><drupal-media data-caption=" " data-entity-type="media" data-entity-uuid="dbb16f97-cd11-4357-acde-cd09e19e312b"></drupal-media></p>' => FALSE,
],
]; ];
$this->assertFilteredString($filter, $tests); $this->assertFilteredString($filter, $tests);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment