- bugfix clear_config Smarty2 BC wrapper function was missing

This commit is contained in:
uwe.tews@googlemail.com
2011-06-19 20:34:28 +00:00
parent 4d07e3b03e
commit a55e05506e
2 changed files with 15 additions and 10 deletions

View File

@@ -1,4 +1,7 @@
===== SVN trunk =====
19/06/2011
- bugfix clear_config Smarty2 BC wrapper function was missing
16/06/2011
- bugfix do not overwrite 'smarty' template variable when {include ... scope=parent} exits

View File

@@ -95,6 +95,8 @@ class Smarty_Internal_Wrapper {
return call_user_func_array(array($this->smarty,'clearAllCache'),$args);
case 'cache':
return call_user_func_array(array($this->smarty,'clearCache'),$args);
case 'config':
return call_user_func_array(array($this->smarty,'clearConfig'),$args);
case 'compiled_template':
return call_user_func_array(array($this->smarty,'clearCompiledTemplate'),$args);
}