diff --git a/core/modules/node/lib/Drupal/node/Plugin/views/wizard/Node.php b/core/modules/node/lib/Drupal/node/Plugin/views/wizard/Node.php index 644fbcf..99b3fd5 100644 --- a/core/modules/node/lib/Drupal/node/Plugin/views/wizard/Node.php +++ b/core/modules/node/lib/Drupal/node/Plugin/views/wizard/Node.php @@ -165,10 +165,10 @@ protected function default_display_options() { } /** - * Overrides Drupal\views\Plugin\views\wizard\WizardPluginBase::default_display_filters_user(). + * Overrides Drupal\views\Plugin\views\wizard\WizardPluginBase::defaultDisplayFiltersUser(). */ - protected function default_display_filters_user(array $form, array &$form_state) { - $filters = parent::default_display_filters_user($form, $form_state); + protected function defaultDisplayFiltersUser(array $form, array &$form_state) { + $filters = parent::defaultDisplayFiltersUser($form, $form_state); if (!empty($form_state['values']['show']['tagged_with']['tids'])) { $filters['tid'] = array( 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..adf2dde 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 @@ -805,7 +805,7 @@ protected function default_display_filters($form, $form_state) { } // Add any filters specified by the user when filling out the wizard. - $filters = array_merge($filters, $this->default_display_filters_user($form, $form_state)); + $filters = array_merge($filters, $this->defaultDisplayFiltersUser($form, $form_state)); return $filters; } @@ -822,7 +822,7 @@ protected function default_display_filters($form, $form_state) { * An array of filter arrays keyed by ID. A sort array contains the options * accepted by a filter handler. */ - protected function default_display_filters_user(array $form, array &$form_state) { + protected function defaultDisplayFiltersUser(array $form, array &$form_state) { $filters = array(); if (!empty($form_state['values']['show']['type']) && $form_state['values']['show']['type'] != 'all') {