- Issue created by @joachim
- 🇬🇧United Kingdom joachim
The problem is in Markdown:
public function process($text, $langcode = NULL) { // Only use the parser to process the text if it's not empty. if (!empty($text)) { $language = $langcode ? \Drupal::languageManager()->getLanguage($langcode) : NULL; $text = $this->getParser()->parse($text, $language); } return new FilterProcessResult($text); }
The parameter to FilterProcessResult is supposed to be a string.
- Open on Drupal.org →Core: 9.5.x + Environment: PHP 8.0 & MySQL 5.7last update
10 months ago Waiting for branch to pass - Open on Drupal.org →Core: 9.5.x + Environment: PHP 8.0 & MySQL 5.7last update
10 months ago Waiting for branch to pass - Status changed to Needs review
10 months ago 7:34am 31 May 2024 - Status changed to RTBC
10 months ago 8:57am 31 May 2024 - 🇬🇧United Kingdom joachim
I've not tried the dev release, but I can see from the MR the problem exists there too.
MR LGTM.
- First commit to issue fork.
-
megachriz →
committed cf005992 on 3.0.x authored by
immaculatexavier →
Issue #3450532 by immaculatexavier, megachriz, joachim: Fixed...
-
megachriz →
committed cf005992 on 3.0.x authored by
immaculatexavier →
- 🇳🇱Netherlands megachriz
I was able to reproduce the error this way:
- On a text format, set the Pathologic filter after the Markdown filter
- Try to render a text using the configured text format.
I added an unit test (oof) and I merged the changes!