diff options
| author | uwe.tews@googlemail.com <uwe.tews@googlemail.com> | 2011-09-19 21:13:44 +0000 |
|---|---|---|
| committer | uwe.tews@googlemail.com <uwe.tews@googlemail.com> | 2011-09-19 21:13:44 +0000 |
| commit | c8eb5d078ab40cb343bc1c834ea2690d993a9e76 (patch) | |
| tree | 36616b5726d1606291373f732c07d390819340a1 /libs/sysplugins/smarty_internal_template.php | |
| parent | c877da74de38808351558cf77ce8c05175bf8711 (diff) | |
| download | smarty-c8eb5d078ab40cb343bc1c834ea2690d993a9e76.tar.gz smarty-c8eb5d078ab40cb343bc1c834ea2690d993a9e76.tar.bz2 smarty-c8eb5d078ab40cb343bc1c834ea2690d993a9e76.zip | |
- bugfix output filter shall not run on included subtemplates
Diffstat (limited to 'libs/sysplugins/smarty_internal_template.php')
| -rw-r--r-- | libs/sysplugins/smarty_internal_template.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/sysplugins/smarty_internal_template.php b/libs/sysplugins/smarty_internal_template.php index ea48cb08..9050adfb 100644 --- a/libs/sysplugins/smarty_internal_template.php +++ b/libs/sysplugins/smarty_internal_template.php @@ -272,7 +272,7 @@ class Smarty_Internal_Template extends Smarty_Internal_TemplateBase { $tpl->tpl_vars[$_key] = new Smarty_variable($_val); } } - return $tpl->fetch(null, null, null, null, false, false); + return $tpl->fetch(null, null, null, null, false, false, true); } /** |
