From 88e7ab7d669dc8023081038352fd04a7ed6df7c9 Mon Sep 17 00:00:00 2001 From: NormanPracht Date: Thu, 16 Feb 2023 08:54:41 +0100 Subject: [PATCH] URL Decode custom-object tokens --- Helper/TokenParser.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Helper/TokenParser.php b/Helper/TokenParser.php index c7e4d845b..045629594 100644 --- a/Helper/TokenParser.php +++ b/Helper/TokenParser.php @@ -23,7 +23,7 @@ public function findTokens(string $content): ArrayCollection foreach ($matches[1] as $key => $tokenDataRaw) { $token = new Token($matches[0][$key]); - $parts = $this->getPartsDividedByPipe($tokenDataRaw); + $parts = $this->getPartsDividedByPipe(urldecode($tokenDataRaw)); try { $this->extractAliases($parts[0], $token);