We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 212ed5a commit 0b5311eCopy full SHA for 0b5311e
lib/internal/Magento/Framework/Filter/Template/Tokenizer/Parameter.php
100644
100755
@@ -25,7 +25,7 @@ public function tokenize()
25
}
26
27
if ($this->char() !== '=') {
28
- $parameterName .= strtolower($this->char());
+ $parameterName .= $this->char() ?? strtolower($this->char());
29
} else {
30
$parameters[$parameterName] = $this->getValue();
31
$parameterName = '';
0 commit comments