- Issue created by @cvalverp
- 🇩🇪Germany mkalkbrenner 🇩🇪
The simple patch fixes Drupal 11.2 (and backwards) compatibility.
- 🇩🇪Germany the app service
Just for everyone that runs into the same problem like me where no drupal page renders anymore because of this problem in the log:
Just modify the file yourself as a workaround till a new plugin version is released:
/web/modules/contrib/cookies/src/Plugin/Block/CookiesDocsBlock.phpAnd add the proposed change above:
OLD:
public function submitConfigurationForm(array &$form, FormStateInterface $form_state) {
NEW:
public function submitConfigurationForm(array &$form, FormStateInterface $form_state): void {