By danylevskyi on
Change record status:
Published (View all published change records)
Project:
Issue links:
Description:
implode() expects separator argument as array since php 7.4. in 8.0.0 it is not supported.
The code before:
$args = implode($f, ',');
The code after:
$args = implode($f, [',']);
Impacts:
Module developers
Themers
Site templates, recipes and distribution developers