Files
2019-06-30 14:51:54 +02:00

17 lines
250 B
Plaintext

--TEST--
"include" tag sandboxed
--TEMPLATE--
{{ include("foo.twig", sandboxed = true) }}
{{ include("bar.twig") }}
--TEMPLATE(foo.twig)--
foo
--TEMPLATE(bar.twig)--
{{ foo|e }}
--DATA--
return ['foo' => 'bar<br />']
--EXPECT--
foo
bar&lt;br /&gt;