Commit: fd2335bd3206c358e0ba8bc9e7870554372fad25

Author: Raymond Julin | Date: 2011-03-07 22:24:57 +0100
Turned off autoescaping completely as it escaped everything
diff --git a/template/view/adapter/Twig.php b/template/view/adapter/Twig.php index 37b5fef..46326c6 100644 --- a/template/view/adapter/Twig.php +++ b/template/view/adapter/Twig.php @@ -49,7 +49,8 @@ class Twig extends \lithium\template\view\Renderer { $defaults = array( 'cache' => LITHIUM_APP_PATH . '/resources/tmp/cache/templates', 'auto_reload' => (!Environment::is('production')), - 'base_template_class' => '\li3_twig\template\view\adapter\Template' + 'base_template_class' => '\li3_twig\template\view\adapter\Template', + 'autoescape' => false ); parent::__construct($config + $defaults); }