diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/argument/ArgumentPluginBase.php b/core/modules/views/lib/Drupal/views/Plugin/views/argument/ArgumentPluginBase.php index 117ade9..adcccc0 100644 --- a/core/modules/views/lib/Drupal/views/Plugin/views/argument/ArgumentPluginBase.php +++ b/core/modules/views/lib/Drupal/views/Plugin/views/argument/ArgumentPluginBase.php @@ -469,7 +469,7 @@ function default_actions($which = NULL) { ), 'empty' => array( 'title' => t('Display contents of "No results found"'), - 'method' => 'default_empty', + 'method' => 'defaultEmpty', 'breadcrumb' => TRUE, // generate a breadcrumb to here ), 'access denied' => array( @@ -714,7 +714,7 @@ function default_access_denied() { * If an argument was expected and was not given, in this case, display * the view's empty text */ - function default_empty() { + public function defaultEmpty() { // We return with no query; this will force the empty text. $this->view->built = TRUE; $this->view->executed = TRUE;