- bugfix typo in smarty_internal_templatecompilerbase

This commit is contained in:
Uwe.Tews
2010-04-07 15:10:34 +00:00
parent b52e9f1ac8
commit b14725e21a
2 changed files with 5 additions and 2 deletions

View File

@@ -1,3 +1,6 @@
07/04/2010
- bugfix typo in smarty_internal_templatecompilerbase
31/03/2010 31/03/2010
- compile locking by touching old compiled files to avoid concurrent compilations - compile locking by touching old compiled files to avoid concurrent compilations

View File

@@ -282,7 +282,7 @@ class Smarty_Internal_TemplateCompilerBase {
} }
if (isset($function)) { if (isset($function)) {
if ($type == 'modifier') { if ($type == 'modifier') {
$this->template->saved_modifer[$plugin_name] = true; $this->template->saved_modifier[$plugin_name] = true;
} }
return $function; return $function;
} }
@@ -298,7 +298,7 @@ class Smarty_Internal_TemplateCompilerBase {
* } * }
* } * }
* if ($type == 'modifier') { * if ($type == 'modifier') {
* $this->template->saved_modifer[$plugin_name] = true; * $this->template->saved_modifier[$plugin_name] = true;
* } * }
* return $this->template->required_plugins_call[$plugin_name][$type]; * return $this->template->required_plugins_call[$plugin_name][$type];
* } * }