fix PHP 8.0 error: implode(): Argument #2 ($array) must be of type ?array, string given

This commit is contained in:
Ralf Becker 2021-09-24 12:29:48 +02:00
parent bec53dc57d
commit 9babcdf010

View File

@ -1740,13 +1740,12 @@ abstract class Merge
if (strpos($param[0],'$$LETTERPREFIXCUSTOM') === 0)
{ //sets a Letterprefix
$replaceprefixsort = array();
// ToDo Stefan: $contentstart is NOT defined here!!!
$replaceprefix = explode(' ',substr($param[0],21,-2));
foreach ($replaceprefix as $nameprefix)
{
if ($this->replacements['$$'.$nameprefix.'$$'] !='') $replaceprefixsort[] = $this->replacements['$$'.$nameprefix.'$$'];
}
$replace = implode($replaceprefixsort,' ');
$replace = implode(' ', $replaceprefixsort);
}
return $replace;
}