From 5264ddd0353d4947ab7420d42cc6b3d6af60c453 Mon Sep 17 00:00:00 2001 From: Alex Pott Date: Tue, 11 Jun 2013 12:33:54 +0100 Subject: [PATCH] Issue #2003460 by Dan Reinders, baldwinlouie: Rename Views method operator_validate() to operatorValidate(). --- .../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 f97c1944ef3..b2a5d859099 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 @@ -234,7 +234,7 @@ abstract class FilterPluginBase extends HandlerBase { * Simple validate handler */ public function validateOptionsForm(&$form, &$form_state) { - $this->operator_validate($form, $form_state); + $this->operatorValidate($form, $form_state); $this->valueValidate($form, $form_state); if (!empty($this->options['exposed']) && !$this->isAGroup()) { $this->validateExposeForm($form, $form_state); @@ -300,7 +300,7 @@ abstract class FilterPluginBase extends HandlerBase { /** * Validate the operator form. */ - function operator_validate($form, &$form_state) { } + protected function operatorValidate($form, &$form_state) { } /** * Perform any necessary changes to the form values prior to storage.