- πΊπΈUnited States l-laziz
The changes in this commit cause PHP fatal error with Core update 9.5.9 because it expects an array value, however NULL is given.
This looks like the change (git diff) from the merged commit causing error:- $links = []; + $links = $config->get('hide_single_link_block') ? NULL : [];
The Core 9.5.9 doesn't accept NULL value anymore.