- make output of template default handlers cachable

This commit is contained in:
Uwe.Tews
2009-04-04 19:07:42 +00:00
parent 228a225f5b
commit 45e2a5f0d6
2 changed files with 2 additions and 2 deletions

View File

@@ -1,4 +1,5 @@
04/04/2009
- make output of template default handlers cachable
- some fixes on yesterdays update
04/03/2006

View File

@@ -533,9 +533,8 @@ class Smarty_Internal_Template extends Smarty_Internal_TemplateBase {
throw new Exception("Default template handler not callable");
} else {
$_return = call_user_func_array($this->smarty->default_template_handler_func,
array($this->resource_type, $this->resource_name, &$this->template_source, &$this));
array($this->resource_type, $this->resource_name, &$this->template_source, &$this->template_timestamp, &$this));
if ($_return == true) {
$this->isEvaluated = true;
return $_filepath;
}
}