diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/sort/SortPluginBase.php b/core/modules/views/lib/Drupal/views/Plugin/views/sort/SortPluginBase.php index a7ae4ac..c65bb9f 100644 --- a/core/modules/views/lib/Drupal/views/Plugin/views/sort/SortPluginBase.php +++ b/core/modules/views/lib/Drupal/views/Plugin/views/sort/SortPluginBase.php @@ -79,7 +79,7 @@ public function buildOptionsForm(&$form, &$form_state) { $this->showExposeButton($form, $form_state); } $form['op_val_start'] = array('#value' => '
'); - $this->show_sort_form($form, $form_state); + $this->showSortForm($form, $form_state); $form['op_val_end'] = array('#value' => '
'); if ($this->canExpose()) { $this->showExposeForm($form, $form_state); @@ -160,7 +160,7 @@ public function submitOptionsForm(&$form, &$form_state) { /** * Shortcut to display the value form. */ - function show_sort_form(&$form, &$form_state) { + function showSortForm(&$form, &$form_state) { $options = $this->sort_options(); if (!empty($options)) { $form['order'] = array(