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 8a943ce0830..2da8343ff26 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 @@ -198,7 +198,7 @@ abstract class FilterPluginBase extends HandlerBase { $this->showExposeButton($form, $form_state); } if ($this->canBuildGroup()) { - $this->show_build_group_button($form, $form_state); + $this->showBuildGroupButton($form, $form_state); } $form['clear_markup_start'] = array( '#markup' => '
', @@ -366,7 +366,7 @@ abstract class FilterPluginBase extends HandlerBase { /** * Shortcut to display the build_group/hide button. */ - function show_build_group_button(&$form, &$form_state) { + protected function showBuildGroupButton(&$form, &$form_state) { $form['group_button'] = array( '#prefix' => '
',