From f122f2566871fd15268c94c5a84409c9e8489ee0 Mon Sep 17 00:00:00 2001 From: Alex Pott Date: Tue, 28 May 2013 23:32:25 +0100 Subject: [PATCH] Issue #2002458 by baldwinlouie: Rename Views method default_ignore() to defaultIgnore(). --- .../Drupal/views/Plugin/views/argument/ArgumentPluginBase.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 99b47197b48..5654e6f3d6e 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 @@ -444,7 +444,7 @@ abstract class ArgumentPluginBase extends HandlerBase { $defaults = array( 'ignore' => array( 'title' => t('Display all results for the specified field'), - 'method' => 'default_ignore', + 'method' => 'defaultIgnore', 'breadcrumb' => TRUE, // generate a breadcrumb to here ), 'default' => array( @@ -681,7 +681,7 @@ abstract class ArgumentPluginBase extends HandlerBase { * If an argument was expected and was not given, in this case, simply * ignore the argument entirely. */ - function default_ignore() { + public function defaultIgnore() { return TRUE; }