Browse Source

fix html entities

main
ghost 6 months ago
parent
commit
3c0dbf69bd
  1. 4
      src/Twig/AppExtension.php

4
src/Twig/AppExtension.php

@ -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;
} }

Loading…
Cancel
Save