diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/filter/FilterPluginBase.php b/core/modules/views/lib/Drupal/views/Plugin/views/filter/FilterPluginBase.php index e0dd2d5..bc5b45b 100644 --- a/core/modules/views/lib/Drupal/views/Plugin/views/filter/FilterPluginBase.php +++ b/core/modules/views/lib/Drupal/views/Plugin/views/filter/FilterPluginBase.php @@ -1272,7 +1272,7 @@ public function multipleExposedInput() { * This function is similar to storeExposedInput but modified to * work properly when the filter is a group. */ - function store_group_input($input, $status) { + function storeGroupInput($input, $status) { if (!$this->isAGroup() || empty($this->options['group_info']['identifier'])) { return TRUE; } diff --git a/core/modules/views/lib/Drupal/views/ViewExecutable.php b/core/modules/views/lib/Drupal/views/ViewExecutable.php index a8a8dd2..80d6481 100644 --- a/core/modules/views/lib/Drupal/views/ViewExecutable.php +++ b/core/modules/views/lib/Drupal/views/ViewExecutable.php @@ -1145,7 +1145,7 @@ public function _build($key) { $converted = FALSE; if ($handlers[$id]->isAGroup()) { $converted = $handlers[$id]->convert_exposed_input($this->exposed_data, $group_id); - $handlers[$id]->store_group_input($this->exposed_data, $converted); + $handlers[$id]->storeGroupInput($this->exposed_data, $converted); if (!$converted) { continue; }