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 7198c76 commit 4328a2dCopy full SHA for 4328a2d
lib/internal/Magento/Framework/Filter/Template/Tokenizer/Parameter.php
@@ -19,7 +19,7 @@ public function tokenize()
19
{
20
$parameters = [];
21
$parameterName = '';
22
- while ($this->next()) {
+ do {
23
if ($this->isWhiteSpace()) {
24
continue;
25
} elseif ($this->char() != '=') {
@@ -28,7 +28,7 @@ public function tokenize()
28
$parameters[$parameterName] = $this->getValue();
29
30
}
31
- }
+ } while ($this->next());
32
return $parameters;
33
34
0 commit comments