erdmannfreunde/euf_grid

implode not compatible with php8

Closed this issue · 0 comments

If I run your extension on php8 I get:

"implode(): Argument #2 ($array) must be of type ?array, string given"

According to (PHP docs implode)[https://www.php.net/manual/de/function.implode.php] needs to get the string value first, then the array.

// currently in code:
$grid .= implode(deserialize($arrGridClasses), ", "); 

// fix
$grid .= implode(", ", deserialize($arrGridClasses));

in GridClass.php Line 121; 149

$grid .= implode(deserialize($arrGridClasses), ", ");