- Issue created by @johnnny83
- π©πͺGermany johnnny83
So, the solution is to prevent to pass NULL to the implode function analog to the Bibliography Module of D7 ( https://www.drupal.org/project/biblio/issues/3294931 π PHP 8.1: Deprecated functions Needs work ). Here is the relevant part of the patch:
- $delim = $this->delimiter; foreach ($this->elements as $element) { $text_parts[] = $element->render($data, $mode); } // Insert the delimiter if supplied. - $text = implode($delim, $text_parts); + $delimiter = isset($this->delimiter) ? $this->delimiter : "" ; + $text = implode($delimiter, $text_parts);
- Status changed to Closed: duplicate
about 1 year ago 5:51am 30 October 2023 - πΊπΈUnited States tlwatson
Duplicate of https://www.drupal.org/project/bibcite/issues/3323887 β
A patch for citeproc is in that issue.