From 51777f20847d820265f0e5831406eae693aad197 Mon Sep 17 00:00:00 2001 From: Alex Pott Date: Tue, 11 Jun 2013 14:04:48 +0100 Subject: [PATCH] Issue #2003266 by kenianbei, misselbeck, iStryker, Dan Reinders: Rename Views method show_build_group_button() to showBuildGroupButton(). --- .../lib/Drupal/views/Plugin/views/filter/FilterPluginBase.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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' => '
',