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
);
// @TODO no idea
$text = str_replace('"', '"', $text);
// @TODO no idea, no raw
$text = html_entity_decode($text);
return $text;
}