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..924902d 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 @@ -207,7 +207,7 @@ function build_form(array $form, array &$form_state) { // Add filters and sorts which apply to the view as a whole. $this->build_filters($form, $form_state); - $this->build_sorts($form, $form_state); + $this->buildSorts($form, $form_state); $form['displays']['page'] = array( '#type' => 'fieldset', @@ -584,7 +584,7 @@ protected function build_filters(&$form, &$form_state) { * * By default, this adds a "sorted by [date]" filter (when it is available). */ - protected function build_sorts(&$form, &$form_state) { + protected function buildSorts(&$form, &$form_state) { $sorts = array( 'none' => t('Unsorted'), );