- Issue created by @biswaraj
The issue is only reproducible after applying the core patch https://www.drupal.org/project/drupal/issues/3032353#comment-15746970 ✨ Exposed forms in a block are not currently updated when Ajax filtering is executed Needs work . There is no need for this fix until the linked patch is merged. However, having an additional type check for the variable that fixes the issue shouldn't harm as well.
Here is the error message.
The website encountered an unexpected error. Try again later.
TypeError: array_key_exists(): Argument #2 ($array) must be of type array, null given in Drupal\date_filter\Plugin\views\filter\DateBase->valueForm() (line 196 of modules/contrib/date_filter/src/Plugin/views/filter/DateBase.php).
To reproduce the issue,
Type check for $filter_input
before calling array_key_exists()
could be enough.
E.g.
- \array_key_exists('date', $filter_input)
+ (\is_array($filter_input) && \array_key_exists('date', $filter_input))
Active
1.0
Code