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 2d43c96ab39bbb3b94af3d6f1ddeb8aeee289b2b..6abd68a72ce3c26d7ee96745d7aca90152b2c45d 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) { }
+  public function operatorSubmit($form, &$form_state) { }
 
   /**
    * Shortcut to display the value form.