diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/exposed_form/InputRequired.php b/core/modules/views/lib/Drupal/views/Plugin/views/exposed_form/InputRequired.php index 9cb023a..605c4c5 100644 --- a/core/modules/views/lib/Drupal/views/Plugin/views/exposed_form/InputRequired.php +++ b/core/modules/views/lib/Drupal/views/Plugin/views/exposed_form/InputRequired.php @@ -50,7 +50,7 @@ public function submitOptionsForm(&$form, &$form_state) { parent::submitOptionsForm($form, $form_state); } - function exposed_filter_applied() { + function exposedFilterApplied() { static $cache = NULL; if (!isset($cache)) { $view = $this->view; @@ -72,7 +72,7 @@ function exposed_filter_applied() { } function pre_render($values) { - if (!$this->exposed_filter_applied()) { + if (!$this->exposedFilterApplied()) { $options = array( 'id' => 'area', 'table' => 'views', @@ -93,7 +93,7 @@ function pre_render($values) { } public function query() { - if (!$this->exposed_filter_applied()) { + if (!$this->exposedFilterApplied()) { // We return with no query; this will force the empty text. $this->view->built = TRUE; $this->view->executed = TRUE;