From 327864181142cb1593419f17820cc6c81185131c Mon Sep 17 00:00:00 2001 From: Axel Rutz Date: Tue, 18 Oct 2016 01:16:41 +0200 Subject: [PATCH] Issue #2819908: Any argument after a missing one is silently ignored (D8) --- core/modules/views/src/ViewExecutable.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/modules/views/src/ViewExecutable.php b/core/modules/views/src/ViewExecutable.php index 786b10f..413972b 100644 --- a/core/modules/views/src/ViewExecutable.php +++ b/core/modules/views/src/ViewExecutable.php @@ -1089,7 +1089,7 @@ protected function _buildArguments() { // Set the argument, which will also validate that the argument can be set. if (!$argument->setArgument($arg)) { $status = $argument->validateFail($arg); - break; + continue; } if ($argument->isException()) { @@ -1112,7 +1112,7 @@ protected function _buildArguments() { else { // determine default condition and handle. $status = $argument->defaultAction(); - break; + continue; } // Be safe with references and loops: -- 2.7.4