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..9bd00d2 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 @@ -348,7 +348,7 @@ function show_build_group_form(&$form, &$form_state) { return; } - $this->build_group_form($form, $form_state); + $this->buildGroupForm($form, $form_state); // When we click the expose button, we add new gadgets to the form but they // have no data in $_POST so their defaults get wiped out. This prevents @@ -829,7 +829,7 @@ public function buildExposedForm(&$form, &$form_state) { * Build the form to let users create the group of exposed filters. * This form is displayed when users click on button 'Build group' */ - function build_group_form(&$form, &$form_state) { + function buildGroupForm(&$form, &$form_state) { if (empty($this->options['exposed']) || empty($this->options['is_grouped'])) { return; }