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 c0d1b7402b6610e6f0d6d6c298ff366d36d164a0..895440de02fdc196a57704237beb79e9327289ce 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 @@ -457,7 +457,7 @@ protected function defaultActions($which = NULL) { ), 'not found' => array( 'title' => t('Hide view'), - 'method' => 'default_not_found', + 'method' => 'defaultNotFound', 'hard fail' => TRUE, // This is a hard fail condition ), 'summary' => array( @@ -691,7 +691,7 @@ public function defaultIgnore() { * If an argument was expected and was not given, in this case, report * the view as 'not found' or hide it. */ - function default_not_found() { + protected function defaultNotFound() { // Set a failure condition and let the display manager handle it. $this->view->build_info['fail'] = TRUE; return FALSE;