diff --git a/change_log.txt b/change_log.txt index d4eeb703..b41a89f8 100644 --- a/change_log.txt +++ b/change_log.txt @@ -1,3 +1,6 @@ +07/04/2010 +- bugfix typo in smarty_internal_templatecompilerbase + 31/03/2010 - compile locking by touching old compiled files to avoid concurrent compilations diff --git a/libs/sysplugins/smarty_internal_templatecompilerbase.php b/libs/sysplugins/smarty_internal_templatecompilerbase.php index 1aa999bc..148db165 100644 --- a/libs/sysplugins/smarty_internal_templatecompilerbase.php +++ b/libs/sysplugins/smarty_internal_templatecompilerbase.php @@ -282,7 +282,7 @@ class Smarty_Internal_TemplateCompilerBase { } if (isset($function)) { if ($type == 'modifier') { - $this->template->saved_modifer[$plugin_name] = true; + $this->template->saved_modifier[$plugin_name] = true; } return $function; } @@ -298,7 +298,7 @@ class Smarty_Internal_TemplateCompilerBase { * } * } * 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]; * }