Skip to content
Snippets Groups Projects

Fix `implode(): Argument #2 ($array) must be of type ?array` error by setting...

Open pcate requested to merge issue/field_group-3269112:3269112-implode-argument-2 into 8.x-3.x
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
+ 1
1
@@ -608,7 +608,7 @@ function field_group_format_settings_summary($group_name, $group) {
$summary = $plugin->settingsSummary();
}
else {
$summary = '';
$summary = [];
}
return [
Loading