mirror of
https://github.com/smarty-php/smarty.git
synced 2025-08-06 03:14:27 +02:00
- bugfix clear_config Smarty2 BC wrapper function was missing
This commit is contained in:
@@ -1,4 +1,7 @@
|
|||||||
===== SVN trunk =====
|
===== SVN trunk =====
|
||||||
|
19/06/2011
|
||||||
|
- bugfix clear_config Smarty2 BC wrapper function was missing
|
||||||
|
|
||||||
16/06/2011
|
16/06/2011
|
||||||
- bugfix do not overwrite 'smarty' template variable when {include ... scope=parent} exits
|
- bugfix do not overwrite 'smarty' template variable when {include ... scope=parent} exits
|
||||||
|
|
||||||
|
@@ -95,6 +95,8 @@ class Smarty_Internal_Wrapper {
|
|||||||
return call_user_func_array(array($this->smarty,'clearAllCache'),$args);
|
return call_user_func_array(array($this->smarty,'clearAllCache'),$args);
|
||||||
case 'cache':
|
case 'cache':
|
||||||
return call_user_func_array(array($this->smarty,'clearCache'),$args);
|
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':
|
case 'compiled_template':
|
||||||
return call_user_func_array(array($this->smarty,'clearCompiledTemplate'),$args);
|
return call_user_func_array(array($this->smarty,'clearCompiledTemplate'),$args);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user