- 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
6 months ago Waiting for branch to pass - Open on Drupal.org →Core: 9.5.x + Environment: PHP 8.0 & MySQL 5.7last update
6 months ago Waiting for branch to pass - Status changed to Needs review
6 months ago 7:34am 31 May 2024 - Status changed to RTBC
6 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.