From b14725e21a717f277d8f4aaea971f9e7ed6f614a Mon Sep 17 00:00:00 2001 From: "Uwe.Tews" Date: Wed, 7 Apr 2010 15:10:34 +0000 Subject: [PATCH] - bugfix typo in smarty_internal_templatecompilerbase --- change_log.txt | 3 +++ libs/sysplugins/smarty_internal_templatecompilerbase.php | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) 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]; * }