summaryrefslogtreecommitdiff
path: root/libs/sysplugins/smarty_internal_template.php
diff options
context:
space:
mode:
authoruwe.tews@googlemail.com <uwe.tews@googlemail.com>2011-09-19 21:13:44 +0000
committeruwe.tews@googlemail.com <uwe.tews@googlemail.com>2011-09-19 21:13:44 +0000
commitc8eb5d078ab40cb343bc1c834ea2690d993a9e76 (patch)
tree36616b5726d1606291373f732c07d390819340a1 /libs/sysplugins/smarty_internal_template.php
parentc877da74de38808351558cf77ce8c05175bf8711 (diff)
downloadsmarty-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.php2
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);
}
/**