fix html entities

This commit is contained in:
ghost 2023-12-22 17:24:16 +02:00
parent 905b601574
commit 3c0dbf69bd

View File

@ -185,8 +185,8 @@ class AppExtension extends AbstractExtension
$text $text
); );
// @TODO no idea // @TODO no idea, no raw
$text = str_replace('"', '"', $text); $text = html_entity_decode($text);
return $text; return $text;
} }