From 85f013c81e61d47393c1d58bdd931886a0d01030 Mon Sep 17 00:00:00 2001
From: Zach Schmid <zach@schmid.me>
Date: Mon, 27 May 2013 00:37:16 -0400
Subject: [PATCH] Issue #2002378 by toddtomlinson, drhino | heddn: Rename
 Views method build_group_form() to buildGroupForm().

---
 .../views/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 e0dd2d5..c197987 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) {
+  protected function buildGroupForm(&$form, &$form_state) {
     if (empty($this->options['exposed']) || empty($this->options['is_grouped'])) {
       return;
     }
-- 
1.7.11.1

