diff --git a/core/modules/views/src/Plugin/views/argument/ArgumentPluginBase.php b/core/modules/views/src/Plugin/views/argument/ArgumentPluginBase.php index 439fb51..cc9012b 100644 --- a/core/modules/views/src/Plugin/views/argument/ArgumentPluginBase.php +++ b/core/modules/views/src/Plugin/views/argument/ArgumentPluginBase.php @@ -1158,8 +1158,8 @@ public static function decodeValidatorId($id) { * @param bool $force_int * Enforce that values should be numeric. */ - protected function unpackArgumentValue() { - $break = static::breakString($this->argument); + protected function unpackArgumentValue($force_int = FALSE) { + $break = static::breakString($this->argument, $force_int); $this->value = $break->value; $this->operator = $break->operator; }