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..804b90a 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 @@ -91,7 +91,7 @@ function set_breadcrumb(&$breadcrumb) { } * * @return TRUE/FALSE */ - function uses_breadcrumb() { + function usesBreadcrumb() { $info = $this->default_actions($this->options['default_action']); return !empty($info['breadcrumb']); } diff --git a/core/modules/views/lib/Drupal/views/ViewExecutable.php b/core/modules/views/lib/Drupal/views/ViewExecutable.php index a8a8dd2..d3b981c 100644 --- a/core/modules/views/lib/Drupal/views/ViewExecutable.php +++ b/core/modules/views/lib/Drupal/views/ViewExecutable.php @@ -912,7 +912,7 @@ protected function _buildArguments() { // Since we're really generating the breadcrumb for the item above us, // check the default action of this argument. - if ($this->display_handler->usesBreadcrumb() && $argument->uses_breadcrumb()) { + if ($this->display_handler->usesBreadcrumb() && $argument->usesBreadcrumb()) { $path = $this->getUrl($breadcrumb_args); if (strpos($path, '%') === FALSE) { if (!empty($argument->options['breadcrumb_enable']) && !empty($argument->options['breadcrumb'])) {