mirror of
https://github.com/twigphp/Twig.git
synced 2026-09-12 02:16:41 +00:00
14 lines
271 B
Plaintext
14 lines
271 B
Plaintext
--TEST--
|
|
"include" tag sandboxed
|
|
--TEMPLATE--
|
|
{{ include("foo.twig", sandboxed = true) }}
|
|
--TEMPLATE(foo.twig)--
|
|
|
|
|
|
{{ 'foo'|e }}
|
|
{{ 'foo'|e }}
|
|
--DATA--
|
|
return []
|
|
--EXCEPTION--
|
|
Twig\Sandbox\SecurityNotAllowedFilterError: Filter "e" is not allowed in "foo.twig" at line 4.
|