diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/wizard/WizardPluginBase.php b/core/modules/views/lib/Drupal/views/Plugin/views/wizard/WizardPluginBase.php index 3945ae0..25d8996 100644 --- a/core/modules/views/lib/Drupal/views/Plugin/views/wizard/WizardPluginBase.php +++ b/core/modules/views/lib/Drupal/views/Plugin/views/wizard/WizardPluginBase.php @@ -1139,7 +1139,7 @@ protected function retrieve_validated_view(array $form, array &$form_state, $uns * @param Drupal\views_ui\ViewUI $view * The validated view object. */ - protected function set_validated_view(array $form, array &$form_state, ViewUI $view) { + protected function setValidatedView(array $form, array &$form_state, ViewUI $view) { $key = hash('sha256', serialize($form_state['values'])); $this->validated_views[$key] = $view; } @@ -1154,7 +1154,7 @@ public function validateView(array $form, array &$form_state) { $errors = $view->get('executable')->validate(); if (empty($errors)) { - $this->set_validated_view($form, $form_state, $view); + $this->setValidatedView($form, $form_state, $view); } return $errors;