From dc44c6040c36ba90e6d1f3ae626978b2e3d2ce50 Mon Sep 17 00:00:00 2001 From: Alex Pott <alex.a.pott@googlemail.com> Date: Tue, 28 May 2013 22:51:09 +0100 Subject: [PATCH] Issue #2003264 by phenaproxima, shoptalk: Rename Views show_build_group_form() to showBuildGroupForm(). --- .../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 e0dd2d546a97..0849322a7db2 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 @@ -209,7 +209,7 @@ public function buildOptionsForm(&$form, &$form_state) { '#markup' => '<div class="clearfix">', ); // Render the build group form. - $this->show_build_group_form($form, $form_state); + $this->showBuildGroupForm($form, $form_state); $form['clear_markup_end'] = array( '#markup' => '</div>', ); @@ -343,7 +343,7 @@ function value_submit($form, &$form_state) { } /** * Shortcut to display the exposed options form. */ - function show_build_group_form(&$form, &$form_state) { + public function showBuildGroupForm(&$form, &$form_state) { if (empty($this->options['is_grouped'])) { return; } -- GitLab