Problem/Motivation

With the release of PHP 7.4, there was a change in the implode function:

Passing the glue after the pieces (i.e. not using the documented order of parameters) has been deprecated.

This causes this code in line 194 of features.ctools.inc to emit a PHP notice:
$code = explode('}', implode($code, "{\n"));

Proposed resolution

See attached patch.

CommentFileSizeAuthor
features.patch684 bytesennorehling

Comments

ennorehling created an issue. See original summary.