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 a015395..75a3fad 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 @@ -449,7 +449,7 @@ function default_actions($which = NULL) { ), 'default' => array( 'title' => t('Provide default value'), - 'method' => 'default_default', + 'method' => 'defaultDefault', 'form method' => 'defaultArgumentForm', 'has default argument' => TRUE, 'default only' => TRUE, // this can only be used for missing argument, not validation failure @@ -726,7 +726,7 @@ public function defaultEmpty() { * This just returns true. The view argument builder will know where * to find the argument from. */ - function default_default() { + public function defaultDefault() { return TRUE; }