Skip to content

Commit bfa6074

Browse files
committed
Replaced urldecode with rawurldecode that not converting + into space
1 parent 538f690 commit bfa6074

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/internal/Magento/Framework/Filter/Template/Tokenizer/AbstractTokenizer.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ public function char()
9494
*/
9595
public function setString($value)
9696
{
97-
$this->_string = $value;
97+
$this->_string = rawurldecode($value);
9898
$this->reset();
9999
}
100100

0 commit comments

Comments
 (0)