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..7e73d2c 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 @@ -251,7 +251,7 @@ public function submitOptionsForm(&$form, &$form_state) { unset($form_state['values']['expose_button']); // don't store this. unset($form_state['values']['group_button']); // don't store this. if (!$this->isAGroup()) { - $this->operator_submit($form, $form_state); + $this->operatorSubmit($form, $form_state); $this->value_submit($form, $form_state); } if (!empty($this->options['exposed'])) { @@ -306,7 +306,7 @@ function operator_validate($form, &$form_state) { } * Perform any necessary changes to the form values prior to storage. * There is no need for this function to actually store the data. */ - function operator_submit($form, &$form_state) { } + function operatorSubmit($form, &$form_state) { } /** * Shortcut to display the value form.